diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-04 00:59:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-04 00:59:56 +0000 |
commit | 0e5bd96f84660bd87e5814feb24af3db80bb434c (patch) | |
tree | dd12a869d72e6e30e1afc4c37b7d5ed5d82ebcab /runtime/mswin.vim | |
parent | 986920760e65384efdbe7158231849ab422ddae3 (diff) | |
download | vim-git-0e5bd96f84660bd87e5814feb24af3db80bb434c.tar.gz |
updated for version 7.0192v7.0192
Diffstat (limited to 'runtime/mswin.vim')
-rw-r--r-- | runtime/mswin.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/mswin.vim b/runtime/mswin.vim index 48458ed46..75c249fb8 100644 --- a/runtime/mswin.vim +++ b/runtime/mswin.vim @@ -1,7 +1,7 @@ " Set options and add mapping such that Vim behaves a lot like MS-Windows " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last change: 2005 Dec 28 +" Last change: 2006 Feb 02 " bail out if this isn't wanted (mrsvim.vim uses this). if exists("g:skip_loading_mswin") && g:skip_loading_mswin @@ -47,18 +47,18 @@ if has("virtualedit") func! <SID>Paste() let ove = &ve set ve=all - normal `^ + normal! `^ if @+ != '' - normal "+gP + normal! "+gP endif let c = col(".") - normal i + normal! i if col(".") < c " compensate for i<ESC> moving the cursor left " Avoid a beep when the text ends at the window edge. let vb_save = &vb let t_vb_save = &t_vb set vb t_vb= - normal l + normal! l let &vb = vb_save let &t_vb = t_vb_save endif |