Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim82 /
autoload /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxr-xr-x
2026-04-30 01:40
xml
[ DIR ]
drwxr-xr-x
2026-04-30 01:40
README.txt
773
B
-rw-r--r--
2026-04-29 09:50
RstFold.vim
1.86
KB
-rw-r--r--
2026-04-29 09:50
ada.vim
22.04
KB
-rw-r--r--
2026-04-29 09:50
adacomplete.vim
3.58
KB
-rw-r--r--
2026-04-29 09:50
ccomplete.vim
17.39
KB
-rw-r--r--
2026-04-29 09:50
clojurecomplete.vim
8.46
KB
-rw-r--r--
2026-04-29 09:50
context.vim
5.33
KB
-rw-r--r--
2026-04-29 09:50
contextcomplete.vim
656
B
-rw-r--r--
2026-04-29 09:50
csscomplete.vim
42.23
KB
-rw-r--r--
2026-04-29 09:50
decada.vim
2.93
KB
-rw-r--r--
2026-04-29 09:50
getscript.vim
24.29
KB
-rw-r--r--
2026-04-29 09:50
gnat.vim
5.21
KB
-rw-r--r--
2026-04-29 09:50
gzip.vim
6.26
KB
-rw-r--r--
2026-04-29 09:50
haskellcomplete.vim
103.31
KB
-rw-r--r--
2026-04-29 09:50
htmlcomplete.vim
24.89
KB
-rw-r--r--
2026-04-29 09:50
javascriptcomplete.vim
27.48
KB
-rw-r--r--
2026-04-29 09:50
netrw.vim
544.6
KB
-rw-r--r--
2026-04-29 09:50
netrwFileHandlers.vim
9.89
KB
-rw-r--r--
2026-04-29 09:50
netrwSettings.vim
10.22
KB
-rw-r--r--
2026-04-29 09:50
netrw_gitignore.vim
1.21
KB
-rw-r--r--
2026-04-29 09:50
paste.vim
672
B
-rw-r--r--
2026-04-29 09:50
phpcomplete.vim
346.2
KB
-rw-r--r--
2026-04-29 09:50
python3complete.vim
21.08
KB
-rw-r--r--
2026-04-29 09:50
pythoncomplete.vim
21.59
KB
-rw-r--r--
2026-04-29 09:50
rubycomplete.vim
25.43
KB
-rw-r--r--
2026-04-29 09:50
rust.vim
10.22
KB
-rw-r--r--
2026-04-29 09:50
rustfmt.vim
2.92
KB
-rw-r--r--
2026-04-29 09:50
spellfile.vim
5.96
KB
-rw-r--r--
2026-04-29 09:50
sqlcomplete.vim
38.27
KB
-rw-r--r--
2026-04-29 09:50
syntaxcomplete.vim
30.71
KB
-rw-r--r--
2026-04-29 09:50
tar.vim
29.45
KB
-rw-r--r--
2026-04-29 09:50
tohtml.vim
30.9
KB
-rw-r--r--
2026-04-29 09:50
vimball.vim
23.76
KB
-rw-r--r--
2026-04-29 09:50
xmlcomplete.vim
14.59
KB
-rw-r--r--
2026-04-29 09:50
xmlformat.vim
6.05
KB
-rw-r--r--
2026-04-29 09:50
zip.vim
14.82
KB
-rw-r--r--
2026-04-29 09:50
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