diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/globalias/globalias.plugin.zsh | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/globalias/globalias.plugin.zsh')
-rw-r--r-- | zsh/oh-my-zsh/plugins/globalias/globalias.plugin.zsh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/zsh/oh-my-zsh/plugins/globalias/globalias.plugin.zsh b/zsh/oh-my-zsh/plugins/globalias/globalias.plugin.zsh deleted file mode 100644 index bd27d58..0000000 --- a/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 |