aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2023-03-11 17:11:02 +0000
committerLewis Russell <lewis6991@gmail.com>2023-03-20 10:06:32 +0000
commite5641df6d3fc3bb6c3c55593b6152082bfc561b6 (patch)
tree9354e0f324c274ba9aaae31ddb2269b1a6a54268 /runtime/lua/vim
parente1db0e35e4d5859b96e6aff882df62d6c714b569 (diff)
downloadrneovim-e5641df6d3fc3bb6c3c55593b6152082bfc561b6.tar.gz
rneovim-e5641df6d3fc3bb6c3c55593b6152082bfc561b6.tar.bz2
rneovim-e5641df6d3fc3bb6c3c55593b6152082bfc561b6.zip
feat: add `vim.filetype.get_option()`
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r--runtime/lua/vim/filetype.lua20
-rw-r--r--runtime/lua/vim/filetype/options.lua82
2 files changed, 102 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua
index cf813b19b1..69fcb01e8c 100644
--- a/runtime/lua/vim/filetype.lua
+++ b/runtime/lua/vim/filetype.lua
@@ -2631,4 +2631,24 @@ function M.match(args)
end
end
+--- Get the default option value for a {filetype}.
+---
+--- The returned value is what would be set in a new buffer after 'filetype'
+--- is set, meaning it should respect all FileType autocmds and ftplugin files.
+---
+--- Example:
+--- <pre>lua
+--- vim.filetype.get_option('vim', 'commentstring')
+--- </pre>
+---
+--- Note: this uses |nvim_get_option_value()| but caches the result.
+--- This means |ftplugin| and |FileType| autocommands are only
+--- triggered once and may not reflect later changes.
+--- @param filetype string Filetype
+--- @param option string Option name
+--- @return string|boolean|integer: Option value
+function M.get_option(filetype, option)
+ return require('vim.filetype.options').get_option(filetype, option)
+end
+
return M
diff --git a/runtime/lua/vim/filetype/options.lua b/runtime/lua/vim/filetype/options.lua
new file mode 100644
index 0000000000..77a66991d5
--- /dev/null
+++ b/runtime/lua/vim/filetype/options.lua
@@ -0,0 +1,82 @@
+local api = vim.api
+
+local M = {}
+
+local function get_ftplugin_runtime(filetype)
+ return api.nvim__get_runtime({
+ string.format('ftplugin/%s.vim', filetype),
+ string.format('ftplugin/%s_*.vim', filetype),
+ string.format('ftplugin/%s/*.vim', filetype),
+ string.format('ftplugin/%s.lua', filetype),
+ string.format('ftplugin/%s_*.lua', filetype),
+ string.format('ftplugin/%s/*.lua', filetype),
+ }, true, {}) --[[@as string[] ]]
+end
+
+-- Keep track of ftplugin files
+local ftplugin_cache = {} ---@type table<string,table<string,integer>>
+
+-- Keep track of total number of FileType autocmds
+local ft_autocmd_num ---@type integer?
+
+-- Keep track of filetype options
+local ft_option_cache = {} ---@type table<string,table<string,any>>
+
+--- @param path string
+--- @return integer
+local function hash(path)
+ local mtime0 = vim.loop.fs_stat(path).mtime
+ return mtime0.sec * 1000000000 + mtime0.nsec
+end
+
+--- Only update the cache on changes to the number of FileType autocmds
+--- and changes to any ftplugin/ file. This isn't guaranteed to catch everything
+--- but should be good enough.
+--- @param filetype string
+local function update_ft_option_cache(filetype)
+ local new_ftautos = #api.nvim_get_autocmds({ event = 'FileType' })
+ if new_ftautos ~= ft_autocmd_num then
+ -- invalidate
+ ft_option_cache[filetype] = nil
+ ft_autocmd_num = new_ftautos
+ end
+
+ local files = get_ftplugin_runtime(filetype)
+
+ ftplugin_cache[filetype] = ftplugin_cache[filetype] or {}
+
+ if #files ~= #vim.tbl_keys(ftplugin_cache[filetype]) then
+ -- invalidate
+ ft_option_cache[filetype] = nil
+ ftplugin_cache[filetype] = {}
+ end
+
+ for _, f in ipairs(files) do
+ -- VIMRUNTIME should be static so shouldn't need to worry about it changing
+ if not vim.startswith(f, vim.env.VIMRUNTIME) then
+ local mtime = hash(f)
+ if ftplugin_cache[filetype][f] ~= mtime then
+ -- invalidate
+ ft_option_cache[filetype] = nil
+ ftplugin_cache[filetype][f] = mtime
+ end
+ end
+ end
+end
+
+--- @private
+--- @param filetype string Filetype
+--- @param option string Option name
+--- @return string|integer|boolean
+function M.get_option(filetype, option)
+ update_ft_option_cache(filetype)
+
+ if not ft_option_cache[filetype] or not ft_option_cache[filetype][option] then
+ ft_option_cache[filetype] = ft_option_cache[filetype] or {}
+ ft_option_cache[filetype][option] = api.nvim_get_option_value(option, { filetype = filetype })
+ end
+
+ return ft_option_cache[filetype][option]
+end
+
+return M