summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2025-01-16 13:54:33 -0500
committerAnthony Wang2025-01-16 13:54:33 -0500
commit29902ade3103dd6b3152a0ef749dde8f489aa0bb (patch)
tree93ceb15337084e2a5369a95c69ee27346b4d584a
parent6eb34af1b31ae2a1bbe804b548fd3dadd1eb27d2 (diff)
Fish 4.0 beta stuff
I just made a big oops when I built Fish 4.0 on my laptop and scp'ed it to my VPS which has an older CPU and then I couldn't log in anymore 😭 So I had to rebuild Fish without -march=native and stuff and copied the new /usr/bin/fish* binaries over to the VPS after booting a boot CD
-rw-r--r--fish/config.fish8
1 files changed, 3 insertions, 5 deletions
diff --git a/fish/config.fish b/fish/config.fish
index 65c8cd4..c4db486 100644
--- a/fish/config.fish
+++ b/fish/config.fish
@@ -20,8 +20,6 @@ set -gx EDITOR micro
set -gx PYTHON_HISTORY ~/.local/state/python_history
set -gx CARGO_HOME ~/.local/share/cargo
-# https://github.com/fish-shell/fish-shell/issues/4770
-# https://github.com/fish-shell/fish-shell/commit/2e9de57fd78f1c9ee0e71e141b75bb2b24abfc2d
-# Remove after Fish 4.0
-bind \cH backward-kill-word
-bind \e\[3\;5~ kill-word
+# Actually ctrl-backspace
+# fish_key_reader detects it as ctrl-h
+bind ctrl-h backward-kill-word