aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/fish_default_key_bindings.fish
diff options
context:
space:
mode:
Diffstat (limited to 'share/functions/fish_default_key_bindings.fish')
-rw-r--r--share/functions/fish_default_key_bindings.fish5
1 files changed, 4 insertions, 1 deletions
diff --git a/share/functions/fish_default_key_bindings.fish b/share/functions/fish_default_key_bindings.fish
index 8d86c7ee..c65cd49e 100644
--- a/share/functions/fish_default_key_bindings.fish
+++ b/share/functions/fish_default_key_bindings.fish
@@ -144,5 +144,8 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
bind $argv \eOc forward-word
bind $argv \eOd backward-word
end
-end
+ # Make it easy to turn an unexecuted command into a comment in the shell history. Also,
+ # remove the commenting chars so the command can be further edited then executed.
+ bind \e\# __fish_toggle_comment_commandline
+end