Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.225.72.113
Domains :
Cant Read [ /etc/named.conf ]
User : web
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
2021-11-01 09:21
README.txt
773
B
-rw-r--r--
2020-12-15 16:44
ada.vim
21.98
KB
-rw-r--r--
2020-12-15 16:44
adacomplete.vim
3.58
KB
-rw-r--r--
2020-12-15 16:44
ccomplete.vim
16.63
KB
-rw-r--r--
2020-12-15 16:44
clojurecomplete.vim
7.4
KB
-rw-r--r--
2020-12-15 16:44
csscomplete.vim
15.55
KB
-rw-r--r--
2020-12-15 16:44
decada.vim
2.93
KB
-rw-r--r--
2020-12-15 16:44
getscript.vim
24.28
KB
-rw-r--r--
2020-12-15 16:44
gnat.vim
5.21
KB
-rw-r--r--
2020-12-15 16:44
gzip.vim
5.95
KB
-rw-r--r--
2020-12-15 16:44
htmlcomplete.vim
23.71
KB
-rw-r--r--
2020-12-15 16:44
javascriptcomplete.vim
26.39
KB
-rw-r--r--
2020-12-15 16:44
netrw.vim
398.22
KB
-rw-r--r--
2020-12-15 16:44
netrwFileHandlers.vim
9.91
KB
-rw-r--r--
2020-12-15 16:44
netrwSettings.vim
9.79
KB
-rw-r--r--
2020-12-15 16:44
paste.vim
1.2
KB
-rw-r--r--
2020-12-15 16:44
phpcomplete.vim
286.92
KB
-rw-r--r--
2020-12-15 16:44
python3complete.vim
21
KB
-rw-r--r--
2020-12-15 16:44
pythoncomplete.vim
21.5
KB
-rw-r--r--
2020-12-15 16:44
rubycomplete.vim
23
KB
-rw-r--r--
2020-12-15 16:44
spellfile.vim
6.07
KB
-rw-r--r--
2020-12-15 16:44
sqlcomplete.vim
37.39
KB
-rw-r--r--
2020-12-15 16:44
syntaxcomplete.vim
30.54
KB
-rw-r--r--
2020-12-15 16:44
tar.vim
21.57
KB
-rw-r--r--
2020-12-15 16:44
tohtml.vim
31.33
KB
-rw-r--r--
2020-12-15 16:44
vimball.vim
23.76
KB
-rw-r--r--
2020-12-15 16:44
xmlcomplete.vim
14.59
KB
-rw-r--r--
2020-12-15 16:44
zip.vim
12.48
KB
-rw-r--r--
2020-12-15 16:44
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