diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-12-26 18:56:31 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-12-27 11:40:38 +0100 |
commit | 69fbb58385d14a623be6652fcd2d4c3ff65de1d3 (patch) | |
tree | 5b81d1645ef6f9ac1f6ec45a1947fc2402ca561f /runtime/lua/vim | |
parent | 46c7faa00b165a1ad1b7cef8245df30d3dc3ef56 (diff) | |
download | rneovim-69fbb58385d14a623be6652fcd2d4c3ff65de1d3.tar.gz rneovim-69fbb58385d14a623be6652fcd2d4c3ff65de1d3.tar.bz2 rneovim-69fbb58385d14a623be6652fcd2d4c3ff65de1d3.zip |
vim-patch:9.1.0962: filetype: bun.lock file is not recognized
Problem: filetype: bun.lock file is not recognized
Solution: detect 'bun.lock' file as jsonc filetype
(Anton Kastritskii)
closes: vim/vim#16308
https://github.com/vim/vim/commit/f07ae5b3bdb7331ee0e65adcb74402eef74f0a2b
Co-authored-by: Anton Kastritskii <halloy52@gmail.com>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index ad74a16e09..d6a29ed84d 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1636,6 +1636,7 @@ local filename = { ['.luaurc'] = 'jsonc', ['.swrc'] = 'jsonc', ['.vsconfig'] = 'jsonc', + ['bun.lock'] = 'jsonc', ['.justfile'] = 'just', ['justfile'] = 'just', ['Justfile'] = 'just', |