dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit e2d8ced1f0537aa76f4073e971d56f6c41588dbc
parent ef8718d8546ec990385f7b97482af85f323e6164
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Wed, 16 Mar 2022 13:52:40 +0100

vim: remove remnants of sandwich from sh ftplugin

Diffstat:
Mvim/after/ftplugin/sh.vim | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/vim/after/ftplugin/sh.vim b/vim/after/ftplugin/sh.vim @@ -2,15 +2,6 @@ compiler sh let g:sh_fold_enabled= 7 setlocal foldmethod=syntax -let g:sandwich#magicchar#f#patterns = [ - \ { - \ 'header' : '\$', - \ 'bra' : '(', - \ 'ket' : ')', - \ 'footer' : '', - \ }, - \ ] - let b:undo_ftplugin = (exists('b:undo_ftplugin') ? b:undo_ftplugin.'|' : '') let b:undo_ftplugin .= 'let g:sandwich#magicchar#f#patterns = g:sandwich#magicchar#f#default_patterns |' let b:undo_ftplugin .= 'setlocal makeprg< foldmethod<'