aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-11-02 20:18:20 +0100
committerMax Christian Pohle2017-11-02 20:18:20 +0100
commitb7272b72e3b72a829f9c4089667e7db8dcdd850b (patch)
tree844c7a9caa7e76915d00d5a8e874ea63b519273c
parent0e74b6f3a07655cf95e4ff172400efaa4a60f3ad (diff)
downloadvim-b7272b72e3b72a829f9c4089667e7db8dcdd850b.tar.bz2
vim-b7272b72e3b72a829f9c4089667e7db8dcdd850b.zip
Added editexisting script for gvim/vim
-rw-r--r--vimrc-full11
1 files changed, 5 insertions, 6 deletions
diff --git a/vimrc-full b/vimrc-full
index 8475d0a..383951b 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -1,11 +1,5 @@
1" vim: noai:ts=2:sw=2:sts=2 iskeyword+=\:,\!,\<,\>,\-,\& 1" vim: noai:ts=2:sw=2:sts=2 iskeyword+=\:,\!,\<,\>,\-,\&
2 2
3" scripts from the default vim installation, which do not get loaded by default, but are useful.
4" if filereadable($VIMRUNTIME.'/macros/editexisting.vim')
5" " source $VIMRUNTIME/macros/editexisting.vim
6" packadd! editexisting
7" endif
8
9"======================================================================================================================= 3"=======================================================================================================================
10" GENERAL: 4" GENERAL:
11"======================================================================================================================= 5"=======================================================================================================================
@@ -295,6 +289,11 @@ else " default Vim?
295 menu &UI.&Open\ in\ Serversession 289 menu &UI.&Open\ in\ Serversession
296 \ :execute ":bd<Bar>:call remote_send('GVIM', ':e ' . expand('#:p') . '\<CR\>')"<CR> 290 \ :execute ":bd<Bar>:call remote_send('GVIM', ':e ' . expand('#:p') . '\<CR\>')"<CR>
297 291
292 " scripts from the default vim installation, which do not get loaded by default, but are useful.
293 if filereadable($VIMRUNTIME.'/macros/editexisting.vim')
294 packadd! editexisting
295 endif
296
298endif 297endif
299 298
300 299
..