@@ -143,7 +143,8 @@ variables can be used to overrule the filetype used for certain extensions:
143143 *.asp g:filetype_asp | ft-aspvbs-syntax | | ft-aspperl-syntax |
144144 *.bas g:filetype_bas | ft-basic-syntax |
145145 *.cfg g:filetype_cfg
146- *.csh g:filetype_csh | ft-csh-syntax |
146+ *.cls g:filetype_cls
147+ *.csh g:filetype_csh | ft-csh-syntax |
147148 *.dat g:filetype_dat
148149 *.frm g:filetype_frm | ft-form-syntax |
149150 *.fs g:filetype_fs | ft-forth-syntax |
@@ -156,6 +157,7 @@ variables can be used to overrule the filetype used for certain extensions:
156157 *.pp g:filetype_pp | ft-pascal-syntax |
157158 *.prg g:filetype_prg
158159 *.r g:filetype_r
160+ *.sig g:filetype_sig
159161 *.sql g:filetype_sql | ft-sql-syntax |
160162 *.src g:filetype_src
161163 *.sys g:filetype_sys
@@ -554,12 +556,30 @@ For further discussion of fortran_have_tabs and the method used for the
554556detection of source format see | ft-fortran-syntax | .
555557
556558
559+ FREEBASIC *ft-freebasic-plugin*
560+
561+ This plugin aims to treat the four FreeBASIC dialects, "fb", "qb", "fblite"
562+ and "deprecated", as distinct languages.
563+
564+ The dialect will be set to the first name found in g:freebasic_forcelang, any
565+ #lang directive or $lang metacommand in the file being edited, or finally
566+ g:freebasic_lang. These global variables conceptually map to the fbc options
567+ -forcelang and -lang. If no dialect is explicitly specified "fb" will be
568+ used.
569+
570+ For example, to set the dialect to a default of "fblite" but still allow for
571+ any #lang directive overrides, use the following command: >
572+
573+ let g:freebasic_lang = "fblite"
574+
575+
557576 GIT COMMIT *ft-gitcommit-plugin*
558577
559578One command, :DiffGitCached, is provided to show a diff of the current commit
560579in the preview window. It is equivalent to calling "git diff --cached" plus
561580any arguments given to the command.
562581
582+
563583GPROF *ft-gprof-plugin*
564584
565585The gprof filetype plugin defines a mapping <C-]> to jump from a function
@@ -569,6 +589,7 @@ to the details of that function in the call graph.
569589The mapping can be disabled with: >
570590 let g:no_gprof_maps = 1
571591
592+
572593 MAIL *ft-mail-plugin*
573594
574595Options:
@@ -642,15 +663,15 @@ manpages and follows linked manpages on hitting CTRL-]).
642663
643664For bash,zsh,ksh or dash, add to the config file (.bashrc,.zshrc, ...)
644665
645- export MANPAGER="vim -M +MANPAGER -"
666+ export MANPAGER="vim +MANPAGER --not-a-term -"
646667
647668For (t)csh, add to the config file
648669
649- setenv MANPAGER "vim -M +MANPAGER -"
670+ setenv MANPAGER "vim +MANPAGER --not-a-term -"
650671
651672For fish, add to the config file
652673
653- set -x MANPAGER "vim -M +MANPAGER -"
674+ set -x MANPAGER "vim +MANPAGER --not-a-term -"
654675
655676
656677MARKDOWN *ft-markdown-plugin*
0 commit comments