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
" netrw_gitignore#Hide: gitignore-based hiding " Function returns a string of comma separated patterns convenient for " assignment to `g:netrw_list_hide` option. " Function can take additional filenames as arguments, example: " netrw_gitignore#Hide('custom_gitignore1', 'custom_gitignore2') " " Usage examples: " let g:netrw_list_hide = netrw_gitignore#Hide() " let g:netrw_list_hide = netrw_gitignore#Hide() . 'more,hide,patterns' " " Copyright: Copyright (C) 2013 Bruno Sutic {{{1 " Permission is hereby granted to use and distribute this code, " with or without modifications, provided that this copyright " notice is copied with it. Like anything else that's free, " netrw_gitignore.vim is provided *as is* and comes with no " warranty of any kind, either expressed or implied. By using " this plugin, you agree that in no event will the copyright " holder be liable for any damages resulting from the use " of this software. function! netrw_gitignore#Hide(...) return substitute(substitute(system('git ls-files --other --ignored --exclude-standard --directory'), '\n', ',', 'g'), ',$', '', '') endfunction