Merge branch 'bash_completion' of https://github.com/martinetd/kitty
This commit is contained in:
commit
1dc7c23b2f
1 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ def __init__(self):
|
|||
compdef _kitty kitty
|
||||
''',
|
||||
'bash': '''
|
||||
kitty_completions() {
|
||||
_kitty_completions() {
|
||||
local src
|
||||
local limit
|
||||
# Send all words up to the word the cursor is currently on
|
||||
|
|
@ -55,7 +55,7 @@ def __init__(self):
|
|||
fi
|
||||
}
|
||||
|
||||
complete -o nospace -F kitty_completions kitty
|
||||
complete -o nospace -F _kitty_completions kitty
|
||||
''',
|
||||
'fish': '''
|
||||
function __kitty_completions
|
||||
|
|
|
|||
Loading…
Reference in a new issue