Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
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-07-16 06:19
xml
[ DIR ]
drwxr-xr-x
2026-07-16 06:19
RstFold.vim
1.86
KB
-rw-r--r--
2026-07-14 04:08
ada.vim
22.04
KB
-rw-r--r--
2026-07-14 04:08
adacomplete.vim
3.58
KB
-rw-r--r--
2026-07-14 04:08
ccomplete.vim
19.34
KB
-rw-r--r--
2026-07-14 04:08
clojurecomplete.vim
8.44
KB
-rw-r--r--
2026-07-14 04:08
context.vim
5.33
KB
-rw-r--r--
2026-07-14 04:08
contextcomplete.vim
656
B
-rw-r--r--
2026-07-14 04:08
csscomplete.vim
42.24
KB
-rw-r--r--
2026-07-14 04:08
decada.vim
2.93
KB
-rw-r--r--
2026-07-14 04:08
getscript.vim
24.29
KB
-rw-r--r--
2026-07-14 04:08
gnat.vim
5.21
KB
-rw-r--r--
2026-07-14 04:08
gzip.vim
6.26
KB
-rw-r--r--
2026-07-14 04:08
haskellcomplete.vim
103.31
KB
-rw-r--r--
2026-07-14 04:08
htmlcomplete.vim
24.88
KB
-rw-r--r--
2026-07-14 04:08
javascriptcomplete.vim
27.48
KB
-rw-r--r--
2026-07-14 04:08
netrw.vim
549.59
KB
-rw-r--r--
2026-07-14 04:08
netrwFileHandlers.vim
9.89
KB
-rw-r--r--
2026-07-14 04:08
netrwSettings.vim
10.23
KB
-rw-r--r--
2026-07-14 04:08
netrw_gitignore.vim
1.21
KB
-rw-r--r--
2026-07-14 04:08
paste.vim
672
B
-rw-r--r--
2026-07-14 04:08
phpcomplete.vim
346.23
KB
-rw-r--r--
2026-07-14 04:08
python3complete.vim
23.22
KB
-rw-r--r--
2026-07-14 04:08
pythoncomplete.vim
23.73
KB
-rw-r--r--
2026-07-14 04:08
rubycomplete.vim
25.26
KB
-rw-r--r--
2026-07-14 04:08
rust.vim
10.22
KB
-rw-r--r--
2026-07-14 04:08
rustfmt.vim
2.92
KB
-rw-r--r--
2026-07-14 04:08
spellfile.vim
5.96
KB
-rw-r--r--
2026-07-14 04:08
sqlcomplete.vim
38.27
KB
-rw-r--r--
2026-07-14 04:08
syntaxcomplete.vim
32.86
KB
-rw-r--r--
2026-07-14 04:08
tar.vim
29.63
KB
-rw-r--r--
2026-07-14 04:08
tohtml.vim
30.9
KB
-rw-r--r--
2026-07-14 04:08
vimball.vim
23.76
KB
-rw-r--r--
2026-07-14 04:08
xmlcomplete.vim
14.59
KB
-rw-r--r--
2026-07-14 04:08
xmlformat.vim
6.05
KB
-rw-r--r--
2026-07-14 04:08
zip.vim
15.09
KB
-rw-r--r--
2026-07-14 04:08
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