mirror of
https://github.com/machakann/vim-sandwich.git
synced 2026-05-28 00:26:34 +02:00
19 lines
542 B
VimL
19 lines
542 B
VimL
if &compatible || exists('b:did_sandwich_plaintex_ftplugin') || get(g:, 'sandwich_no_plaintex_ftplugin', 0)
|
|
finish
|
|
endif
|
|
|
|
runtime macros/sandwich/ftplugin/tex.vim
|
|
|
|
augroup sandwich-event-FileType
|
|
autocmd!
|
|
execute 'autocmd FileType plaintex source ' . fnameescape(expand('<sfile>'))
|
|
augroup END
|
|
|
|
let b:did_sandwich_plaintex_ftplugin = 1
|
|
if !exists('b:undo_ftplugin')
|
|
let b:undo_ftplugin = ''
|
|
else
|
|
let b:undo_ftplugin .= ' | '
|
|
endif
|
|
let b:undo_ftplugin .= 'unlet b:did_sandwich_plaintex_ftplugin | call sandwich#util#ftrevert("tex")'
|