X7ROOT File Manager
Current Path:
/usr/share/vim/vim80/autoload
usr
/
share
/
vim
/
vim80
/
autoload
/
📁
..
📄
README.txt
(773 B)
📄
ada.vim
(22.04 KB)
📄
adacomplete.vim
(3.58 KB)
📄
ccomplete.vim
(16.63 KB)
📄
clojurecomplete.vim
(7.84 KB)
📄
context.vim
(5.33 KB)
📄
contextcomplete.vim
(656 B)
📄
csscomplete.vim
(42.18 KB)
📄
decada.vim
(2.93 KB)
📁
dist
📄
getscript.vim
(24.28 KB)
📄
gnat.vim
(5.21 KB)
📄
gzip.vim
(6.26 KB)
📄
htmlcomplete.vim
(24.85 KB)
📄
javascriptcomplete.vim
(26.39 KB)
📄
netrw.vim
(519.7 KB)
📄
netrwFileHandlers.vim
(9.91 KB)
📄
netrwSettings.vim
(9.96 KB)
📄
netrw_gitignore.vim
(3.05 KB)
📄
paste.vim
(1.18 KB)
📄
phpcomplete.vim
(344.09 KB)
📄
python3complete.vim
(21.07 KB)
📄
pythoncomplete.vim
(21.53 KB)
📄
rubycomplete.vim
(23.79 KB)
📄
rust.vim
(10.22 KB)
📄
rustfmt.vim
(2.92 KB)
📄
spellfile.vim
(6.07 KB)
📄
sqlcomplete.vim
(38.27 KB)
📄
syntaxcomplete.vim
(30.54 KB)
📄
tar.vim
(21.57 KB)
📄
tohtml.vim
(31.33 KB)
📄
vimball.vim
(23.76 KB)
📁
xml
📄
xmlcomplete.vim
(14.59 KB)
📄
zip.vim
(14.3 KB)
Editing: paste.vim
" Vim support file to help with paste mappings and menus " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2017 Aug 30 " 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. " Pasting blockwise and linewise selections is not possible in Insert and " Visual mode without the +virtualedit feature. They are pasted as if they " were characterwise instead. Add to that some tricks to leave the cursor in " the right position, also for "gi". if has("virtualedit") 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 else let paste#paste_cmd = {'n': "\"=@+.'xy'<CR>gPFx\"_2x"} let paste#paste_cmd['v'] = '"-c<Esc>gix<Esc>' . paste#paste_cmd['n'] . '"_x' let paste#paste_cmd['i'] = 'x<Esc>' . paste#paste_cmd['n'] . '"_s' endif
Upload File
Create Folder