zshcompletion.vim

Type: text/x-vim, Size: 328 bytes, SHA256: ea4811260ff2eb710b2dd5dad024c76fc4be76f828159b32737a2ce8b5193a28.
UTC timestamps: upload: 2026-07-18 03:14:35, download: 2026-08-08 19:24:30, max lifetime: forever.

% cat ~/.vim/ftdetect/zshcompletion.vim

function! DetectZSHCompletion()

if getline(1) =~ '^#\(autoload\|compdef\).*'

set filetype=zsh

set tabstop=2

set softtabstop=2

set shiftwidth=2

set expandtab

endif

endfunction

augroup filetypdetect

au BufRead,BufNewFile * call DetectZSHCompletion()

augroup END