Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim91 /
Delete
Unzip
Name
Size
Permission
Date
Action
autoload
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
colors
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
compiler
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
doc
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
ftplugin
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
import
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
indent
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
keymap
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
lang
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
macros
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
pack
[ DIR ]
drwxr-xr-x
2025-08-05 17:14
plugin
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
print
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
spell
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
syntax
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
tutor
[ DIR ]
drwxr-xr-x
2026-07-16 06:48
bugreport.vim
1.95
KB
-rw-r--r--
2026-07-13 17:17
debian.vim
1.76
KB
-rw-r--r--
2026-06-15 22:15
defaults.vim
4.74
KB
-rw-r--r--
2026-07-13 17:17
delmenu.vim
1.25
KB
-rw-r--r--
2026-07-13 17:17
evim.vim
2.23
KB
-rw-r--r--
2026-07-13 17:17
filetype.vim
76.64
KB
-rw-r--r--
2026-07-13 17:17
ftoff.vim
346
B
-rw-r--r--
2026-07-13 17:17
ftplugin.vim
1.17
KB
-rw-r--r--
2026-07-13 17:17
ftplugof.vim
419
B
-rw-r--r--
2026-07-13 17:17
gvimrc_example.vim
1.67
KB
-rw-r--r--
2026-07-13 17:17
indent.vim
820
B
-rw-r--r--
2026-07-13 17:17
indoff.vim
348
B
-rw-r--r--
2026-07-13 17:17
menu.vim
41.16
KB
-rw-r--r--
2026-07-13 17:17
mswin.vim
3.41
KB
-rw-r--r--
2026-07-13 17:17
optwin.vim
67.38
KB
-rw-r--r--
2026-07-13 17:17
scripts.vim
866
B
-rw-r--r--
2026-07-13 17:17
synmenu.vim
39.39
KB
-rw-r--r--
2026-07-13 17:17
vimrc_example.vim
1.4
KB
-rw-r--r--
2026-07-13 17:17
Save
Rename
vim9script noclear # Vim support file to switch on loading plugins for file types # # Maintainer: The Vim Project <https://github.com/vim/vim> # Last change: 2023 Aug 10 # Former Maintainer: Bram Moolenaar <Bram@vim.org> if exists("g:did_load_ftplugin") finish endif g:did_load_ftplugin = 1 augroup filetypeplugin au FileType * call LoadFTPlugin() augroup END if exists('*LoadFTPlugin') # No need to define the function again. finish endif def LoadFTPlugin() if exists("b:undo_ftplugin") # We assume b:undo_ftplugin is using legacy script syntax legacy exe b:undo_ftplugin unlet! b:undo_ftplugin b:did_ftplugin endif var s = expand("<amatch>") if s != "" if &cpo =~# "S" && exists("b:did_ftplugin") # In compatible mode options are reset to the global values, need to # set the local values also when a plugin was already used. unlet b:did_ftplugin endif # When there is a dot it is used to separate filetype names. Thus for # "aaa.bbb" load "aaa" and then "bbb". for name in split(s, '\.') exe 'runtime! ftplugin/' .. name .. '.vim ftplugin/' .. name .. '_*.vim ftplugin/' .. name .. '/*.vim' endfor endif enddef