From 1643b90b9e1ead701a93759b4d98f159b04cb5a0 Mon Sep 17 00:00:00 2001 From: Alkkem <72548193+Alkkem@users.noreply.github.com> Date: Thu, 3 Dec 2020 16:28:56 +0100 Subject: [PATCH] Added more shortcuts to the "ALT" section Added shortcuts to the ALT section, in particular those that come after "ALT+H" --- languages/bash.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/languages/bash.sh b/languages/bash.sh index d864fb5..df781ee 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -32,6 +32,12 @@ ALT+B # moves backward one word ALT+D # deletes next word ALT+F # moves forward one word ALT+H # deletes one character backward +ALT+T # transposes two words +ALT+. # pastes last word from the last command. Pressing it repeatedly traverses through command history. +ALT+U # capitalizes every character from the current cursor position to the end of the word +ALT+L # uncapitalizes every character from the current cursor position to the end of the word +ALT+C # capitalizes the letter under the cursor. The cursor then moves to the end of the word. +ALT+R # reverts any changes to a command you’ve pulled from your history if you’ve edited it. BACKSPACE # deletes one character backward DELETE # deletes one character under cursor