From ab0940a4bf4fefa7f76df2b384c52dcd344f6b89 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Tue, 20 Feb 2018 11:05:28 +0100 Subject: [PATCH] Add awesome ALT commands --- languages/bash.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/languages/bash.sh b/languages/bash.sh index 4dff618..898a66d 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -28,6 +28,10 @@ CTRL+X # lists the possible filename completions of the current word CTRL+Y # retrieves (yank) last item killed CTRL+Z # stops the current command, resume with fg in the foreground or bg in the background +ALT+B # moves backward one word +ALT+D # deletes next word +ALT+F # moves forward one word + DELETE # deletes one character backward !! # repeats the last command exit # logs out of current session