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 22dfa8e commit d9e1c45Copy full SHA for d9e1c45
main.sh
@@ -95,16 +95,22 @@ LHS_BIND_KEY=${3:-'True'}
95
96
if [[ ${LHS_BIND_KEY} == "True" && "$(which zle)" != "" ]]; then
97
# Add hot-keys
98
- # zle -N aws_help
+
99
+ # For aws helper function
100
+ zle -N aws_help
101
+ bindkey '^h' aws_help
102
103
+ # For assume role
104
zle -N aws_main_function
105
bindkey '^@' aws_main_function
106
107
+ # For building the aws cli commandline
108
zle -N aws_get_command
109
# Hotkey: Option + a + c
110
bindkey 'åç' aws_get_command
-
111
bindkey '∫' aws_get_command
112
113
+ # For get history
114
zle -N aws_history
115
# Hotkey Option + ah
116
bindkey '˙' aws_history
0 commit comments