X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fglobalias%2Fglobalias.plugin.zsh;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fglobalias%2Fglobalias.plugin.zsh;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=bd27d589d3b28fe45293a3887b17b0b226e28922;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/globalias/globalias.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/globalias/globalias.plugin.zsh deleted file mode 100644 index bd27d58..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/globalias/globalias.plugin.zsh +++ /dev/null @@ -1,23 +0,0 @@ -globalias() { - # Get last word to the left of the cursor: - # (z) splits into words using shell parsing - # (A) makes it an array even if there's only one element - local word=${${(Az)LBUFFER}[-1]} - if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$word] -eq 0 ]]; then - zle _expand_alias - zle expand-word - fi - zle self-insert -} -zle -N globalias - -# space expands all aliases, including global -bindkey -M emacs " " globalias -bindkey -M viins " " globalias - -# control-space to make a normal space -bindkey -M emacs "^ " magic-space -bindkey -M viins "^ " magic-space - -# normal space during searches -bindkey -M isearch " " magic-space