mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Remove unnecessary eval in __fish_complete_cd
https://github.com/fish-shell/fish-shell/pull/589
This commit is contained in:
parent
7b873179ad
commit
12095c721c
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ function __fish_complete_cd -d "Completions for the cd command"
|
|||
# Note how this works: we evaluate $ctoken*/
|
||||
# That trailing slash ensures that we only expand directories
|
||||
|
||||
set -l ctoken (commandline -ct)
|
||||
set -l ctoken (commandline -ct)
|
||||
if echo $ctoken | sgrep '^/\|^\./\|^\.\./\|^~/' >/dev/null
|
||||
# This is an absolute search path
|
||||
# Squelch descriptions per issue 254
|
||||
|
@ -32,7 +32,7 @@ function __fish_complete_cd -d "Completions for the cd command"
|
|||
# in case the CDPATH directory is relative
|
||||
|
||||
builtin cd $wd
|
||||
eval builtin cd $i
|
||||
builtin cd $i
|
||||
|
||||
# What we would really like to do is skip descriptions if all
|
||||
# valid paths are in the same directory, but we don't know how to
|
||||
|
|
Loading…
Reference in a new issue