diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-10-08 15:48:07 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2022-10-13 16:37:23 +0100 |
commit | 288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27 (patch) | |
tree | 8a4d8f0d54a98d87bb219f54def43a5f0aa5d402 /runtime/lua/man.lua | |
parent | eb123b565e201418dd135d2602dc20eea3cead39 (diff) | |
download | rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.tar.gz rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.tar.bz2 rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.zip |
feat(cscope)!: remove
Diffstat (limited to 'runtime/lua/man.lua')
-rw-r--r-- | runtime/lua/man.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/lua/man.lua b/runtime/lua/man.lua index 6477786dbb..18d08ad1a8 100644 --- a/runtime/lua/man.lua +++ b/runtime/lua/man.lua @@ -604,11 +604,6 @@ function M.goto_tag(pattern, _, _) end end - if vim.o.cscopetag then - -- return only a single entry so we work well with :cstag (#11675) - structured = { structured[1] } - end - return vim.tbl_map(function(entry) return { name = entry.name, |