summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-30 13:02:58 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-30 13:02:58 +0000
commit53ba95e4f0a82f6dab1791bb01f6cddc9b3f61b3 (patch)
treeb0530560f173b7e3959139d98f168fbd0dba412c /runtime
parent98cb90ef865089a5ddd20bc0303d449fb7d97fb2 (diff)
downloadvim-git-53ba95e4f0a82f6dab1791bb01f6cddc9b3f61b3.tar.gz
patch 8.2.3703: most people call F# "fsharp" and not "fs"v8.2.3703
Problem: Most people call F# "fsharp" and not "fs". Solution: Rename filetype "fs" to "fsharp".
Diffstat (limited to 'runtime')
-rw-r--r--runtime/autoload/dist/ft.vim2
-rw-r--r--runtime/filetype.vim9
2 files changed, 7 insertions, 4 deletions
diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim
index 0cbcb1bbb..74df87154 100644
--- a/runtime/autoload/dist/ft.vim
+++ b/runtime/autoload/dist/ft.vim
@@ -231,7 +231,7 @@ func dist#ft#FTfs()
\ || line =~ '^\s*: \S'
setf forth
else
- setf fs
+ setf fsharp
endif
endif
endfunc
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index fd3998b29..f687cc77a 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -634,9 +634,6 @@ au BufNewFile,BufRead *.mas,*.master setf master
" Forth
au BufNewFile,BufRead *.ft,*.fth setf forth
-" F# or Forth
-au BufNewFile,BufRead *.fs call dist#ft#FTfs()
-
" Reva Forth
au BufNewFile,BufRead *.frt setf reva
@@ -652,6 +649,12 @@ au BufNewFile,BufRead *.fsl setf framescript
" FStab
au BufNewFile,BufRead fstab,mtab setf fstab
+" F# or Forth
+au BufNewFile,BufRead *.fs call dist#ft#FTfs()
+
+" F#
+au BufNewFile,BufRead *.fsi,*.fsx setf fsharp
+
" GDB command files
au BufNewFile,BufRead .gdbinit,gdbinit setf gdb