mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:9.1.0305: filetype: some history files are not recognized (#28300)
Problem: filetype: some history files are not recognized
Solution: Add some history patterns to filetype.vim
(Wu, Zhenyu)
closes: vim/vim#14513
da70feabea
Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
This commit is contained in:
@@ -1295,6 +1295,7 @@ local filename = {
|
||||
['cfengine.conf'] = 'cfengine',
|
||||
cgdbrc = 'cgdbrc',
|
||||
['CMakeLists.txt'] = 'cmake',
|
||||
['.cling_history'] = 'cpp',
|
||||
['.alias'] = detect.csh,
|
||||
['.cshrc'] = detect.csh,
|
||||
['.login'] = detect.csh,
|
||||
@@ -1410,6 +1411,7 @@ local filename = {
|
||||
['ipf.conf'] = 'ipfilter',
|
||||
['ipf6.conf'] = 'ipfilter',
|
||||
['ipf.rules'] = 'ipfilter',
|
||||
['.node_repl_history'] = 'javascript',
|
||||
['Pipfile.lock'] = 'json',
|
||||
['.firebaserc'] = 'json',
|
||||
['.prettierrc'] = 'json',
|
||||
@@ -1440,12 +1442,14 @@ local filename = {
|
||||
['.lsl'] = detect.lsl,
|
||||
['.busted'] = 'lua',
|
||||
['.luacheckrc'] = 'lua',
|
||||
['.lua_history'] = 'lua',
|
||||
['config.ld'] = 'lua',
|
||||
['rock_manifest'] = 'lua',
|
||||
['lynx.cfg'] = 'lynx',
|
||||
['m3overrides'] = 'm3build',
|
||||
['m3makefile'] = 'm3build',
|
||||
['cm3.cfg'] = 'm3quake',
|
||||
['.m4_history'] = 'm4',
|
||||
['.followup'] = 'mail',
|
||||
['.article'] = 'mail',
|
||||
['.letter'] = 'mail',
|
||||
@@ -1519,6 +1523,8 @@ local filename = {
|
||||
['MANIFEST.in'] = 'pymanifest',
|
||||
['.pythonstartup'] = 'python',
|
||||
['.pythonrc'] = 'python',
|
||||
['.python_history'] = 'python',
|
||||
['.jline-jython.history'] = 'python',
|
||||
SConstruct = 'python',
|
||||
qmldir = 'qmldir',
|
||||
['.Rhistory'] = 'r',
|
||||
@@ -1537,6 +1543,8 @@ local filename = {
|
||||
Puppetfile = 'ruby',
|
||||
['.irbrc'] = 'ruby',
|
||||
irbrc = 'ruby',
|
||||
['.irb_history'] = 'ruby',
|
||||
irb_history = 'ruby',
|
||||
Vagrantfile = 'ruby',
|
||||
['smb.conf'] = 'samba',
|
||||
screenrc = 'screen',
|
||||
@@ -1546,6 +1554,7 @@ local filename = {
|
||||
['/etc/services'] = 'services',
|
||||
['/etc/serial.conf'] = 'setserial',
|
||||
['/etc/udev/cdsymlinks.conf'] = 'sh',
|
||||
['.ash_history'] = 'sh',
|
||||
['bash.bashrc'] = detect.bash,
|
||||
bashrc = detect.bash,
|
||||
['.bashrc'] = detect.bash,
|
||||
@@ -1562,6 +1571,7 @@ local filename = {
|
||||
['/etc/slp.spi'] = 'slpspi',
|
||||
['.slrnrc'] = 'slrnrc',
|
||||
['sendmail.cf'] = 'sm',
|
||||
['.sqlite_history'] = 'sql',
|
||||
['squid.conf'] = 'squid',
|
||||
['ssh_config'] = 'sshconfig',
|
||||
['sshd_config'] = 'sshdconfig',
|
||||
@@ -1574,7 +1584,10 @@ local filename = {
|
||||
['undo.data'] = 'taskdata',
|
||||
['.tclshrc'] = 'tcl',
|
||||
['.wishrc'] = 'tcl',
|
||||
['.tclsh-history'] = 'tcl',
|
||||
['tclsh.rc'] = 'tcl',
|
||||
['.xsctcmdhistory'] = 'tcl',
|
||||
['.xsdbcmdhistory'] = 'tcl',
|
||||
['texmf.cnf'] = 'texmf',
|
||||
COPYING = 'text',
|
||||
README = 'text',
|
||||
@@ -1592,6 +1605,7 @@ local filename = {
|
||||
['/.cargo/credentials'] = 'toml',
|
||||
['Cargo.lock'] = 'toml',
|
||||
['trustees.conf'] = 'trustees',
|
||||
['.ts_node_repl_history'] = 'typescript',
|
||||
['/etc/udev/udev.conf'] = 'udevconf',
|
||||
['/etc/updatedb.conf'] = 'updatedb',
|
||||
['fdrupstream.log'] = 'upstreamlog',
|
||||
|
||||
Reference in New Issue
Block a user