We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a7c5d commit fe29d45Copy full SHA for fe29d45
key_bindings.fish
@@ -7,5 +7,8 @@ function key_bindings
7
_pisces_bind_pair (string split ',' $pair)
8
end
9
10
+ # normal backspace, also known as \010 or ^H:
11
bind \b _pisces_backspace
12
+ # Terminal.app sends DEL code on ⌫:
13
+ bind \177 _pisces_backspace
14
uninstall.fish
@@ -4,7 +4,7 @@ for pair in $pisces_pairs
4
5
6
-# this doesn't really work "/
bind \b backward-delete-char
+bind \177 backward-delete-char
set -e pisces_pairs
0 commit comments