mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 18:11:47 +00:00
vim-patch:631a50c: runtime(doc): mention cannot ignored events in eventignorewin (#34522)
closes: vim/vim#17545
631a50ceb9
Co-authored-by: glepnir <glephunter@gmail.com>
This commit is contained in:
@@ -6,6 +6,7 @@ local util = require('gen.util')
|
||||
local fmt = string.format
|
||||
|
||||
local DEP_API_METADATA = arg[1]
|
||||
local TAGS_FILE = arg[2]
|
||||
local TEXT_WIDTH = 78
|
||||
|
||||
--- @class vim.api.metadata
|
||||
@@ -797,6 +798,23 @@ local function get_option_meta()
|
||||
end
|
||||
local r = vim.deepcopy(o) --[[@as vim.option_meta]]
|
||||
r.desc = o.desc:gsub('^ ', ''):gsub('\n ', '\n')
|
||||
if o.full_name == 'eventignorewin' then
|
||||
local events = require('nvim.auevents').events
|
||||
local tags_file = assert(io.open(TAGS_FILE))
|
||||
local tags_text = tags_file:read('*a')
|
||||
tags_file:close()
|
||||
local map_fn = function(k, v)
|
||||
if v then
|
||||
return nil
|
||||
end
|
||||
local tag_pat = ('\n%s\t([^\t]+)\t'):format(k)
|
||||
local link_text = ('|%s|'):format(k)
|
||||
local tags_match = tags_text:match(tag_pat) --- @type string?
|
||||
return tags_match and tags_match ~= 'deprecated.txt' and link_text or nil
|
||||
end
|
||||
local extra_desc = vim.iter(vim.spairs(events)):map(map_fn):join(',\n\t')
|
||||
r.desc = r.desc:gsub('<PLACEHOLDER>', extra_desc)
|
||||
end
|
||||
r.defaults = r.defaults or {}
|
||||
if r.defaults.meta == nil then
|
||||
r.defaults.meta = optinfo[o.full_name].default
|
||||
|
||||
@@ -973,7 +973,7 @@ add_target(doc-vim
|
||||
)
|
||||
|
||||
add_target(doc-eval
|
||||
COMMAND ${NVIM_LUA} ${PROJECT_SOURCE_DIR}/src/gen/gen_eval_files.lua ${FUNCS_METADATA}
|
||||
COMMAND ${NVIM_LUA} ${PROJECT_SOURCE_DIR}/src/gen/gen_eval_files.lua ${FUNCS_METADATA} ${PROJECT_BINARY_DIR}/runtime/doc/tags
|
||||
DEPENDS
|
||||
nvim
|
||||
${FUNCS_METADATA}
|
||||
|
||||
@@ -2752,6 +2752,11 @@ local options = {
|
||||
Similar to 'eventignore' but applies to a particular window and its
|
||||
buffers, for which window and buffer related autocommands can be
|
||||
ignored indefinitely without affecting the global 'eventignore'.
|
||||
|
||||
Note: The following events are considered to happen outside of a
|
||||
window context and thus cannot be ignored by 'eventignorewin':
|
||||
|
||||
<PLACEHOLDER>
|
||||
]=],
|
||||
expand_cb = 'expand_set_eventignore',
|
||||
full_name = 'eventignorewin',
|
||||
|
||||
Reference in New Issue
Block a user