mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
vim-patch:8.2.4571: not all gdb files are recognized (#17727)
Problem: Not all gdb files are recognized.
Solution: Add a few more patterns for gdb.
(closes https://github.com/vim/vim/pull/9956)
8d5e514d77
This commit is contained in:
parent
a1a8cbe9e4
commit
5a8bf31d32
@ -664,7 +664,7 @@ au BufNewFile,BufRead *.fs call dist#ft#FTfs()
|
||||
au BufNewFile,BufRead *.fsi,*.fsx setf fsharp
|
||||
|
||||
" GDB command files
|
||||
au BufNewFile,BufRead .gdbinit,gdbinit setf gdb
|
||||
au BufNewFile,BufRead .gdbinit,gdbinit,.gdbearlyinit,gdbearlyinit,*.gdb setf gdb
|
||||
|
||||
" GDMO
|
||||
au BufNewFile,BufRead *.mo,*.gdmo setf gdmo
|
||||
|
@ -225,6 +225,7 @@ local extension = {
|
||||
fsi = "fsharp",
|
||||
fsx = "fsharp",
|
||||
fusion = "fusion",
|
||||
gdb = "gdb",
|
||||
gdmo = "gdmo",
|
||||
mo = "gdmo",
|
||||
tres = "gdresource",
|
||||
@ -919,6 +920,8 @@ local filename = {
|
||||
mtab = "fstab",
|
||||
[".gdbinit"] = "gdb",
|
||||
gdbinit = "gdb",
|
||||
[".gdbearlyinit"] = "gdb",
|
||||
gdbearlyinit = "gdb",
|
||||
["lltxxxxx.txt"] = "gedcom",
|
||||
["TAG_EDITMSG"] = "gitcommit",
|
||||
["MERGE_MSG"] = "gitcommit",
|
||||
|
@ -196,7 +196,7 @@ let s:filename_checks = {
|
||||
\ 'fstab': ['fstab', 'mtab'],
|
||||
\ 'fusion': ['file.fusion'],
|
||||
\ 'fvwm': ['/.fvwm/file', 'any/.fvwm/file'],
|
||||
\ 'gdb': ['.gdbinit', 'gdbinit'],
|
||||
\ 'gdb': ['.gdbinit', 'gdbinit', 'file.gdb', '.config/gdbearlyinit', '.gdbearlyinit'],
|
||||
\ 'gdresource': ['file.tscn', 'file.tres'],
|
||||
\ 'gdscript': ['file.gd'],
|
||||
\ 'gdmo': ['file.mo', 'file.gdmo'],
|
||||
|
Loading…
Reference in New Issue
Block a user