mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
Let . and : be completed with files
For `.` it's *correct* and for `:` it literally accepts everything
This commit is contained in:
parent
5dfaff4281
commit
6a721fab63
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ function __fish_config_interactive -d "Initializations that should be performed
|
|||
#
|
||||
# Only a few builtins take filenames; initialize the rest with no file completions
|
||||
#
|
||||
complete -c(builtin -n | string match -rv '(source|cd|exec|realpath|set|\\[|test|for)') --no-files
|
||||
complete -c(builtin -n | string match -rv '(\.|:|source|cd|exec|realpath|set|\\[|test|for)') --no-files
|
||||
|
||||
# Reload key bindings when binding variable change
|
||||
function __fish_reload_key_bindings -d "Reload key bindings when binding variable change" --on-variable fish_key_bindings
|
||||
|
|
Loading…
Reference in a new issue