We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8618dd commit 0ba8463Copy full SHA for 0ba8463
src/tmux.rs
@@ -93,7 +93,7 @@ mod tests {
93
fn test_capture_alphanumeric_sequences() {
94
let input = "Hello, world! 123 abc_def";
95
let words = super::capture_alphanumeric_sequences(input);
96
- assert_eq!(words, vec!["Hello", "world", "123", "abc_def"]);
+ assert_eq!(words, vec!["Hello", "world", "123", "abc", "def"]);
97
}
98
99
#[test]
0 commit comments