Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim90 /
autoload /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxr-xr-x
2025-05-13 15:07
xml
[ DIR ]
drwxr-xr-x
2025-05-13 15:07
RstFold.vim
1.86
KB
-rw-r--r--
2025-02-16 05:23
ada.vim
22.04
KB
-rw-r--r--
2025-02-16 05:23
adacomplete.vim
3.58
KB
-rw-r--r--
2025-02-16 05:23
bitbake.vim
3.02
KB
-rw-r--r--
2025-02-16 05:23
ccomplete.vim
19.32
KB
-rw-r--r--
2025-02-16 05:23
clojurecomplete.vim
8.66
KB
-rw-r--r--
2025-02-16 05:23
context.vim
2.46
KB
-rw-r--r--
2025-02-16 05:23
contextcomplete.vim
656
B
-rw-r--r--
2025-02-16 05:23
csscomplete.vim
42.24
KB
-rw-r--r--
2025-02-16 05:23
decada.vim
2.93
KB
-rw-r--r--
2025-02-16 05:23
freebasic.vim
1.02
KB
-rw-r--r--
2025-02-16 05:23
getscript.vim
24.29
KB
-rw-r--r--
2025-02-16 05:23
gnat.vim
5.21
KB
-rw-r--r--
2025-02-16 05:23
gzip.vim
6.26
KB
-rw-r--r--
2025-02-16 05:23
haskellcomplete.vim
103.31
KB
-rw-r--r--
2025-02-16 05:23
htmlcomplete.vim
24.88
KB
-rw-r--r--
2025-02-16 05:23
javascriptcomplete.vim
27.48
KB
-rw-r--r--
2025-02-16 05:23
netrw.vim
549.69
KB
-rw-r--r--
2025-02-16 05:23
netrwFileHandlers.vim
9.89
KB
-rw-r--r--
2025-02-16 05:23
netrwSettings.vim
10.23
KB
-rw-r--r--
2025-02-16 05:23
netrw_gitignore.vim
1.21
KB
-rw-r--r--
2025-02-16 05:23
paste.vim
672
B
-rw-r--r--
2025-02-16 05:23
phpcomplete.vim
346.21
KB
-rw-r--r--
2025-02-16 05:23
python.vim
7.7
KB
-rw-r--r--
2025-02-16 05:23
python3complete.vim
21.16
KB
-rw-r--r--
2025-02-16 05:23
pythoncomplete.vim
21.59
KB
-rw-r--r--
2025-02-16 05:23
rubycomplete.vim
25.26
KB
-rw-r--r--
2025-02-16 05:23
rust.vim
10.22
KB
-rw-r--r--
2025-02-16 05:23
rustfmt.vim
2.92
KB
-rw-r--r--
2025-02-16 05:23
spellfile.vim
5.96
KB
-rw-r--r--
2025-02-16 05:23
sqlcomplete.vim
38.27
KB
-rw-r--r--
2025-02-16 05:23
syntaxcomplete.vim
32.86
KB
-rw-r--r--
2025-02-16 05:23
tar.vim
29.62
KB
-rw-r--r--
2025-02-16 05:23
tohtml.vim
31.7
KB
-rw-r--r--
2025-02-16 05:23
typeset.vim
5.94
KB
-rw-r--r--
2025-02-16 05:23
vimball.vim
23.76
KB
-rw-r--r--
2025-02-16 05:23
xmlcomplete.vim
14.59
KB
-rw-r--r--
2025-02-16 05:23
xmlformat.vim
6.05
KB
-rw-r--r--
2025-02-16 05:23
zip.vim
14.69
KB
-rw-r--r--
2025-02-16 05:23
Save
Rename
" Author: Antony Lee <anntzer.lee@gmail.com> " Description: Helper functions for reStructuredText syntax folding " Last Modified: 2018-12-29 function s:CacheRstFold() if !g:rst_fold_enabled return endif let closure = {'header_types': {}, 'max_level': 0, 'levels': {}} function closure.Process(match) dict let curline = getcurpos()[1] if has_key(self.levels, curline - 1) " For over+under-lined headers, the regex will match both at the " overline and at the title itself; in that case, skip the second match. return endif let lines = split(a:match, '\n') let key = repeat(lines[-1][0], len(lines)) if !has_key(self.header_types, key) let self.max_level += 1 let self.header_types[key] = self.max_level endif let self.levels[curline] = self.header_types[key] endfunction let save_cursor = getcurpos() let save_mark = getpos("'[") silent keeppatterns %s/\v^%(%(([=`:.'"~^_*+#-])\1+\n)?.{1,2}\n([=`:.'"~^_*+#-])\2+)|%(%(([=`:.''"~^_*+#-])\3{2,}\n)?.{3,}\n([=`:.''"~^_*+#-])\4{2,})$/\=closure.Process(submatch(0))/gn call setpos('.', save_cursor) call setpos("'[", save_mark) let b:RstFoldCache = closure.levels endfunction function RstFold#GetRstFold() if !g:rst_fold_enabled return endif if !has_key(b:, 'RstFoldCache') call s:CacheRstFold() endif if has_key(b:RstFoldCache, v:lnum) return '>' . b:RstFoldCache[v:lnum] else return '=' endif endfunction function RstFold#GetRstFoldText() if !g:rst_fold_enabled return endif if !has_key(b:, 'RstFoldCache') call s:CacheRstFold() endif let indent = repeat(' ', b:RstFoldCache[v:foldstart] - 1) let thisline = getline(v:foldstart) " For over+under-lined headers, skip the overline. let text = thisline =~ '^\([=`:.''"~^_*+#-]\)\1\+$' ? getline(v:foldstart + 1) : thisline return indent . text endfunction