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 febb9b5 commit d8618ddCopy full SHA for d8618dd
src/tmux.rs
@@ -46,7 +46,7 @@ fn capture_tmux_pane(pane_id: &str) -> Result<String, ()> {
46
}
47
48
fn capture_alphanumeric_sequences(input: &str) -> Vec<String> {
49
- let re = Regex::new(r"[a-zA-Z0-9][a-zA-Z0-9_\-\.]*").unwrap();
+ let re = Regex::new(r"[a-zA-Z0-9]+").unwrap();
50
51
re.find_iter(input)
52
.map(|mat| mat.as_str().to_string())
0 commit comments