1" Vim filetype plugin file 2" Language: BASIC 3" Maintainer: Doug Kearns <[email protected]> 4" Last Change: 2015 Jan 10 5 6if exists("b:did_ftplugin") 7 finish 8endif 9let b:did_ftplugin = 1 10 11let s:cpo_save = &cpo 12set cpo&vim 13 14setlocal comments=:REM,:' 15setlocal commentstring='\ %s 16setlocal formatoptions-=t formatoptions+=croql 17 18if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") 19 let b:browsefilter = "BASIC Source Files (*.bas)\t*.bas\n" . 20 \ "All Files (*.*)\t*.*\n" 21endif 22 23let b:undo_ftplugin = "setl fo< com< cms< sua<" . 24 \ " | unlet! b:browsefilter" 25 26let &cpo = s:cpo_save 27unlet s:cpo_save 28