[zsh] Bind quick launcher keys to <meta>-G instead of <meta>-E

This commit is contained in:
Sebastian Schulze 2021-09-24 11:08:15 +02:00
parent 1388e76414
commit 39ff41759d
No known key found for this signature in database
GPG Key ID: F6BA63C6A7D3044E
1 changed files with 9 additions and 5 deletions

View File

@ -140,13 +140,17 @@ zle -N fzf-ssh
bindkey '\es' fzf-ssh
# Tmux Quick Keys
bindkey -s '\eetn' 'tn^M'
bindkey -s '\eeta' "ta^M"
bindkey -s '\egtn' 'tn^M'
bindkey -s '\egta' "ta^M"
# Git Quick Keys
bindkey -s '\eegf' "gf^M"
bindkey -s '\eegp' "git push^M"
bindkey -s '\eegs' "git status^M"
bindkey -s '\eggf' "gf^M"
bindkey -s '\eggp' "git push^M"
bindkey -s '\eggs' "git status^M"
# Yaml Engineering
bindkey -s '\egba' "baml^M"
bindkey -s '\egoba' "obaml^M"
function fzf-vm () {
local selected_vm=$(grep "Host " ~/.ssh/config | grep -oP "vm-(\w+)" | sort -u | cut -b 4- | fzf --reverse --height=20 --query "$LBUFFER")