mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-17 02:13:51 +01:00
refactor: alphabets.rs -> textbuf/alphabet.rs
This commit is contained in:
parent
7d4d9a8824
commit
2c3c7a5456
5 changed files with 16 additions and 14 deletions
|
|
@ -3,9 +3,9 @@ use std::collections;
|
|||
use regex::Regex;
|
||||
use sequence_trie::SequenceTrie;
|
||||
|
||||
use super::alphabet::Alphabet;
|
||||
use super::matches::Match;
|
||||
use super::raw_match::RawMatch;
|
||||
use crate::alphabets::Alphabet;
|
||||
use crate::regexes::{NamedPattern, EXCLUDE_PATTERNS, PATTERNS};
|
||||
|
||||
/// Holds data for the `Ui`.
|
||||
|
|
@ -232,7 +232,7 @@ impl<'a> Model<'a> {
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use crate::alphabets::Alphabet;
|
||||
use crate::textbuf::alphabet::Alphabet;
|
||||
|
||||
#[test]
|
||||
fn match_reverse() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue