Mercurial > vim
view runtime/autoload/paste.vim @ 17061:051a2f640a6e v8.1.1530
patch 8.1.1530: Travis config is not optimal
commit https://github.com/vim/vim/commit/f42397c395ec8ff2dffef914805b4d9cbf1d600b
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 14 20:47:49 2019 +0200
patch 8.1.1530: Travis config is not optimal
Problem: Travis config is not optimal.
Solution: Remove system conditions. Do not use excluding matrix. Cache OSX
results. (Ozaki Kiichi, closes #4521)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 14 Jun 2019 21:00:08 +0200 |
parents | fe57e4f0eac1 |
children | 4027cefc2aab |
line wrap: on
line source
" Vim support file to help with paste mappings and menus " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2019 Jan 27 " Define the string to use for items that are present both in Edit, Popup and " Toolbar menu. Also used in mswin.vim and macmap.vim. let paste#paste_cmd = {'n': ":call paste#Paste()<CR>"} let paste#paste_cmd['v'] = '"-c<Esc>' . paste#paste_cmd['n'] let paste#paste_cmd['i'] = "\<c-\>\<c-o>\"+gP" func! paste#Paste() let ove = &ve set ve=all normal! `^ if @+ != '' normal! "+gP endif let c = col(".") normal! i if col(".") < c " compensate for i<ESC> moving the cursor left normal! l endif let &ve = ove endfunc