@@ -143,7 +143,8 @@ variables can be used to overrule the filetype used for certain extensions:
143
143
*.asp g:filetype_asp | ft-aspvbs-syntax | | ft-aspperl-syntax |
144
144
*.bas g:filetype_bas | ft-basic-syntax |
145
145
*.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 |
147
148
*.dat g:filetype_dat
148
149
*.frm g:filetype_frm | ft-form-syntax |
149
150
*.fs g:filetype_fs | ft-forth-syntax |
@@ -156,6 +157,7 @@ variables can be used to overrule the filetype used for certain extensions:
156
157
*.pp g:filetype_pp | ft-pascal-syntax |
157
158
*.prg g:filetype_prg
158
159
*.r g:filetype_r
160
+ *.sig g:filetype_sig
159
161
*.sql g:filetype_sql | ft-sql-syntax |
160
162
*.src g:filetype_src
161
163
*.sys g:filetype_sys
@@ -554,12 +556,30 @@ For further discussion of fortran_have_tabs and the method used for the
554
556
detection of source format see | ft-fortran-syntax | .
555
557
556
558
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
+
557
576
GIT COMMIT *ft-gitcommit-plugin*
558
577
559
578
One command, :DiffGitCached, is provided to show a diff of the current commit
560
579
in the preview window. It is equivalent to calling "git diff --cached" plus
561
580
any arguments given to the command.
562
581
582
+
563
583
GPROF *ft-gprof-plugin*
564
584
565
585
The 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.
569
589
The mapping can be disabled with: >
570
590
let g:no_gprof_maps = 1
571
591
592
+
572
593
MAIL *ft-mail-plugin*
573
594
574
595
Options:
@@ -642,15 +663,15 @@ manpages and follows linked manpages on hitting CTRL-]).
642
663
643
664
For bash,zsh,ksh or dash, add to the config file (.bashrc,.zshrc, ...)
644
665
645
- export MANPAGER="vim -M +MANPAGER -"
666
+ export MANPAGER="vim +MANPAGER --not-a-term -"
646
667
647
668
For (t)csh, add to the config file
648
669
649
- setenv MANPAGER "vim -M +MANPAGER -"
670
+ setenv MANPAGER "vim +MANPAGER --not-a-term -"
650
671
651
672
For fish, add to the config file
652
673
653
- set -x MANPAGER "vim -M +MANPAGER -"
674
+ set -x MANPAGER "vim +MANPAGER --not-a-term -"
654
675
655
676
656
677
MARKDOWN *ft-markdown-plugin*
0 commit comments