ada.vim (391B)
1 " These two mappings come from the default ada ftplugin 2 iunmap <buffer> <leader>aj 3 iunmap <buffer> <leader>al 4 5 let b:undo_ftplugin = (exists('b:undo_ftplugin') ? b:undo_ftplugin.'|' : '') 6 setlocal suffixesadd+=.adb,.ads 7 let &l:include='^\s*with' 8 let &l:define='^\s*\(function\|type\|subtype\|procedure\)' 9 let b:undo_ftplugin .= 'setlocal makeprg< errorformat< suffixesadd< include< define<'