From 0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 16 Mar 2020 23:33:42 +0100 Subject: Well I'm using Arch again --- .../vim-interaction/vim-interaction.plugin.zsh | 62 ---------------------- 1 file changed, 62 deletions(-) delete mode 100644 .oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh (limited to '.oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh') diff --git a/.oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh b/.oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh deleted file mode 100644 index 010f998..0000000 --- a/.oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh +++ /dev/null @@ -1,62 +0,0 @@ -# -# See README.md -# -# Derek Wyatt (derek@{myfirstnamemylastname}.org -# - -function callvim -{ - if [[ $# == 0 ]]; then - cat <} == $after ]]; then - after="$after" - fi - if [[ ${before#:} != $before && ${before%} == $before ]]; then - before="$before" - fi - local files - if [[ $# -gt 0 ]]; then - # absolute path of files resolving symlinks (:A) and quoting special chars (:q) - files=':args! '"${@:A:q}" - fi - cmd="$before$files$after" - gvim --servername "$name" --remote-send "$cmd" - if typeset -f postCallVim > /dev/null; then - postCallVim - fi -} - -alias v=callvim -alias vvsp="callvim -b':vsp'" -alias vhsp="callvim -b':sp'" -alias vk="callvim -b':wincmd k'" -alias vj="callvim -b':wincmd j'" -alias vl="callvim -b':wincmd l'" -alias vh="callvim -b':wincmd h'" -- cgit v1.2.3