We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a1d328 commit bf66146Copy full SHA for bf66146
3 files changed
runtime/autoload/dist/script.vim
@@ -189,6 +189,10 @@ def DetectFromHashBang(firstline: string)
189
elseif name =~ 'gforth\>'
190
set ft=forth
191
192
+ # Icon
193
+ elseif name =~ 'icon\>'
194
+ set ft=icon
195
+
196
endif
197
enddef
198
src/testdir/test_filetype.vim
@@ -718,6 +718,7 @@ let s:script_checks = {
718
\ 'routeros': [['#!/path/rsc']],
719
\ 'fish': [['#!/path/fish']],
720
\ 'forth': [['#!/path/gforth']],
721
+ \ 'icon': [['#!/path/icon']],
722
\ }
723
724
" Various forms of "env" optional arguments.
src/version.c
@@ -734,6 +734,8 @@ static char *(features[]) =
734
735
static int included_patches[] =
736
{ /* Add new patch number below this line */
737
+/**/
738
+ 5110,
739
/**/
740
5109,
741
0 commit comments