diff options
| author | Justin Gassner <justin.gassner@web.de> | 2015-06-28 13:28:20 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-02 05:17:49 -0400 |
| commit | 63d5b8707b3b35b91b4dd23d578e5b0adfb2a9b2 (patch) | |
| tree | 81227434ad8e03086b11fd2431e6319d0bcaa667 /runtime/macros | |
| parent | efa059c5a4611629890e28987a83aa781952b78c (diff) | |
| download | rneovim-63d5b8707b3b35b91b4dd23d578e5b0adfb2a9b2.tar.gz rneovim-63d5b8707b3b35b91b4dd23d578e5b0adfb2a9b2.tar.bz2 rneovim-63d5b8707b3b35b91b4dd23d578e5b0adfb2a9b2.zip | |
vim-patch:5d89d9b #2922
Update runtime files.
https://code.google.com/p/vim/source/detail?r=5d89d9b40499059e1a64dc35fbae94313fba0098
Diffstat (limited to 'runtime/macros')
| -rw-r--r-- | runtime/macros/editexisting.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/macros/editexisting.vim b/runtime/macros/editexisting.vim index c18f22569f..3530e29dc4 100644 --- a/runtime/macros/editexisting.vim +++ b/runtime/macros/editexisting.vim @@ -1,6 +1,6 @@ " Vim Plugin: Edit the file with an existing Vim if possible " Maintainer: Bram Moolenaar -" Last Change: 2013 Feb 24 +" Last Change: 2014 Dec 06 " This is a plugin, drop it in your (Unix) ~/.vim/plugin or (Win32) " $VIM/vimfiles/plugin directory. Or make a symbolic link, so that you @@ -112,7 +112,7 @@ func! EditExisting(fname, command) endif if a:command != '' - exe "normal " . a:command + exe "normal! " . a:command endif redraw |