mirror of
https://github.com/nushell/nushell.git
synced 2025-08-20 21:33:58 +02:00
nu-cli/completions: fix file completions filtering (#5122)
This commit is contained in:
@@ -70,7 +70,7 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
fn is_punctuator_char(&mut self, ch: u8) -> bool {
|
||||
fn is_punctuator_char(&self, ch: u8) -> bool {
|
||||
matches!(ch, b'{' | b'}' | b'[' | b']' | b',' | b':')
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user