Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.139
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim74 /
autoload /
Delete
Unzip
Name
Size
Permission
Date
Action
xml
[ DIR ]
drwxr-xr-x
2020-12-18 18:21
README.txt
773
B
-rw-r--r--
2020-12-16 12:20
ada.vim
21.98
KB
-rw-r--r--
2020-12-16 12:20
adacomplete.vim
3.58
KB
-rw-r--r--
2020-12-16 12:20
ccomplete.vim
16.63
KB
-rw-r--r--
2020-12-16 12:20
clojurecomplete.vim
7.4
KB
-rw-r--r--
2020-12-16 12:20
csscomplete.vim
15.55
KB
-rw-r--r--
2020-12-16 12:20
decada.vim
2.93
KB
-rw-r--r--
2020-12-16 12:20
getscript.vim
24.28
KB
-rw-r--r--
2020-12-16 12:20
gnat.vim
5.21
KB
-rw-r--r--
2020-12-16 12:20
gzip.vim
5.95
KB
-rw-r--r--
2020-12-16 12:20
htmlcomplete.vim
23.71
KB
-rw-r--r--
2020-12-16 12:20
javascriptcomplete.vim
26.39
KB
-rw-r--r--
2020-12-16 12:20
netrw.vim
398.22
KB
-rw-r--r--
2020-12-16 12:20
netrwFileHandlers.vim
9.91
KB
-rw-r--r--
2020-12-16 12:20
netrwSettings.vim
9.79
KB
-rw-r--r--
2020-12-16 12:20
paste.vim
1.2
KB
-rw-r--r--
2020-12-16 12:20
phpcomplete.vim
286.92
KB
-rw-r--r--
2020-12-16 12:20
python3complete.vim
21
KB
-rw-r--r--
2020-12-16 12:20
pythoncomplete.vim
21.5
KB
-rw-r--r--
2020-12-16 12:20
rubycomplete.vim
23
KB
-rw-r--r--
2020-12-16 12:20
spellfile.vim
6.07
KB
-rw-r--r--
2020-12-16 12:20
sqlcomplete.vim
37.39
KB
-rw-r--r--
2020-12-16 12:20
syntaxcomplete.vim
30.54
KB
-rw-r--r--
2020-12-16 12:20
tar.vim
21.57
KB
-rw-r--r--
2020-12-16 12:20
tohtml.vim
31.33
KB
-rw-r--r--
2020-12-16 12:20
vimball.vim
23.76
KB
-rw-r--r--
2020-12-16 12:20
xmlcomplete.vim
14.59
KB
-rw-r--r--
2020-12-16 12:20
zip.vim
12.48
KB
-rw-r--r--
2020-12-16 12:20
Save
Rename
" Vim support file to help with paste mappings and menus " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2006 Jun 23 " 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'] = 'x<BS><Esc>' . paste#paste_cmd['n'] . 'gi' 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