OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
vim
/
vim80
/
autoload
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:33 AM
rwxr-xr-x
📄
README.txt
773 bytes
04/18/2023 09:20:34 AM
rw-r--r--
📄
ada.vim
22.04 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
adacomplete.vim
3.58 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
ccomplete.vim
16.63 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
clojurecomplete.vim
7.84 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
context.vim
5.33 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
contextcomplete.vim
656 bytes
04/18/2023 09:20:34 AM
rw-r--r--
📄
csscomplete.vim
42.18 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
decada.vim
2.93 KB
04/18/2023 09:20:34 AM
rw-r--r--
📁
dist
-
05/09/2024 07:13:33 AM
rwxr-xr-x
📄
getscript.vim
24.28 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
gnat.vim
5.21 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
gzip.vim
6.26 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
htmlcomplete.vim
24.85 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
javascriptcomplete.vim
26.39 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrw.vim
519.7 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrwFileHandlers.vim
9.91 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrwSettings.vim
9.96 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrw_gitignore.vim
3.05 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
paste.vim
1.18 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
phpcomplete.vim
344.09 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
python3complete.vim
21.07 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
pythoncomplete.vim
21.53 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
rubycomplete.vim
23.79 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
rust.vim
10.22 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
rustfmt.vim
2.92 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
spellfile.vim
6.07 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
sqlcomplete.vim
38.27 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
syntaxcomplete.vim
30.54 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
tar.vim
21.57 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
tohtml.vim
31.33 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
vimball.vim
23.76 KB
04/18/2023 09:20:34 AM
rw-r--r--
📁
xml
-
05/09/2024 07:13:33 AM
rwxr-xr-x
📄
xmlcomplete.vim
14.59 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
zip.vim
14.3 KB
04/18/2023 09:20:34 AM
rw-r--r--
Editing: paste.vim
Close
" 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