From 8a2e1006b3b272126332aa064f3ad95387129544 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 13 Feb 2025 14:13:49 +0530 Subject: new dot files --- .../vim-interaction/vim-interaction.plugin.zsh | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .config/zsh/oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh (limited to '.config/zsh/oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh') diff --git a/.config/zsh/oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh b/.config/zsh/oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh new file mode 100644 index 0000000..b73f9b4 --- /dev/null +++ b/.config/zsh/oh-my-zsh/plugins/vim-interaction/vim-interaction.plugin.zsh @@ -0,0 +1,69 @@ +# +# See README.md +# +# Derek Wyatt (derek@{myfirstnamemylastname}.org +# + +function callvim { + if [[ $# == 0 ]]; then + cat <, append it + [[ ${after} = :* && ${after} != *\ ]] && after+="" + [[ ${before} = :* && ${before} != *\ ]] && before+="" + # Open files passed (:A means abs path resolving symlinks, :q means quoting special chars) + [[ $# -gt 0 ]] && files=':args! '"${@:A:q}" + # Pass the built vim command to gvim + cmd="$before$files$after" + + # Run the gvim command + gvim --servername "$name" --remote-send "$cmd" || return $? + + # Run postCallVim if defined (maybe to bring focus to gvim, see README) + (( ! $+functions[postCallVim] )) || postCallVim +} + +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-59-g8ed1b