Please tell us which fish version you are using by executing the following:
fish --version: fish, version 3.2.1
echo $version: 3.2.1
Please tell us which operating system and terminal you are using. The output of uname -a and echo $TERM may be helpful in this regard although other commands might be relevant in your specific situation.
Linux isaac-ms7978 5.9.16-1-MANJARO #1 SMP PREEMPT Mon Dec 21 22:00:46 UTC 2020 x86_64 GNU/Linux
xterm-kitty
Please tell us if you tried fish without third-party customizations by executing this command and whether it affected the behavior you are reporting:
sh -c 'env HOME=$(mktemp -d) fish'
^^Did not help^^
Tell us how to reproduce the problem. Including an asciinema.org recording is useful for problems that involve the visual display of fish output such as its prompt.
- Put
bind -k nul accept-autosuggestion in your config.fish
- notice that Ctrl+Space does not work
- run in the terminal
bind -k nul accept-autosuggestion
- It works now
What's happening is that after updating to fish 3.2.1-1, having bind -k nul accept-autosuggestion does not actually bind Ctrl+Space to anything. I can still run this command in the console and it will bind, but it appears that having it in config.fish is not enough.
Please tell us which fish version you are using by executing the following:
fish --version:
fish, version 3.2.1echo $version:
3.2.1Please tell us which operating system and terminal you are using. The output of
uname -aandecho $TERMmay be helpful in this regard although other commands might be relevant in your specific situation.Linux isaac-ms7978 5.9.16-1-MANJARO #1 SMP PREEMPT Mon Dec 21 22:00:46 UTC 2020 x86_64 GNU/Linuxxterm-kittyPlease tell us if you tried fish without third-party customizations by executing this command and whether it affected the behavior you are reporting:
sh -c 'env HOME=$(mktemp -d) fish'
^^Did not help^^
Tell us how to reproduce the problem. Including an asciinema.org recording is useful for problems that involve the visual display of fish output such as its prompt.
bind -k nul accept-autosuggestionin your config.fishbind -k nul accept-autosuggestionWhat's happening is that after updating to fish 3.2.1-1, having
bind -k nul accept-autosuggestiondoes not actually bind Ctrl+Space to anything. I can still run this command in the console and it will bind, but it appears that having it in config.fish is not enough.