mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-02 01:40:13 -05:00
Merge branch 'fix-bash-completions'
This commit is contained in:
commit
63b12d4cdc
3 changed files with 4 additions and 2 deletions
|
|
@ -115,6 +115,8 @@
|
||||||
* Wrong mouse binding triggered when doing two mouse selections in
|
* Wrong mouse binding triggered when doing two mouse selections in
|
||||||
very quick (< 300ms) succession
|
very quick (< 300ms) succession
|
||||||
(https://codeberg.org/dnkl/foot/issues/883).
|
(https://codeberg.org/dnkl/foot/issues/883).
|
||||||
|
* Bash completion giving an error when completing a list of short
|
||||||
|
options
|
||||||
|
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ _foot()
|
||||||
: # don't autocomplete for these flags
|
: # don't autocomplete for these flags
|
||||||
else
|
else
|
||||||
# complete commands from $PATH
|
# complete commands from $PATH
|
||||||
COMPREPLY=( $(compgen -c ${cur}) )
|
COMPREPLY=( $(compgen -c -- ${cur}) )
|
||||||
fi
|
fi
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@ _footclient()
|
||||||
: # don't autocomplete for these flags
|
: # don't autocomplete for these flags
|
||||||
else
|
else
|
||||||
# complete commands from $PATH
|
# complete commands from $PATH
|
||||||
COMPREPLY=( $(compgen -c ${cur}) )
|
COMPREPLY=( $(compgen -c -- ${cur}) )
|
||||||
fi
|
fi
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue