mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 01:51:52 +00:00
docs(undotree): rename help tag #36497
Problem: confusing that there is the tag `undo-tree` (the Vim implementation) and `undotree` (the Lua plugin for visualization). Solution: rename tag to undotree-plugin. Mention the plugin in the docs of |undotree|.
This commit is contained in:
committed by
GitHub
parent
4110e6730a
commit
94ae48ff29
@@ -440,10 +440,13 @@ local config = {
|
||||
return 'Builtin plugin: ' .. name:lower()
|
||||
end,
|
||||
helptag_fmt = function(name)
|
||||
if name:lower() == 'spellfile' then
|
||||
name = name:lower()
|
||||
if name == 'spellfile' then
|
||||
name = 'spellfile.lua'
|
||||
elseif name == 'undotree' then
|
||||
name = 'undotree-plugin'
|
||||
end
|
||||
return name:lower()
|
||||
return name
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user