diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-10-14 09:53:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-14 09:53:15 +0100 |
commit | 9931db2e3fa43ed02e1b0bc6f167ed5398fa6369 (patch) | |
tree | b29a3b9d45b0700da10be86c0237510a2a2f2cde /runtime/lua/man.lua | |
parent | d339b4aad7461937e1e03ac0836b2eb1354ff442 (diff) | |
parent | 7f11dfdef880ee98e4f18f046f21e285157d10ac (diff) | |
download | rneovim-9931db2e3fa43ed02e1b0bc6f167ed5398fa6369.tar.gz rneovim-9931db2e3fa43ed02e1b0bc6f167ed5398fa6369.tar.bz2 rneovim-9931db2e3fa43ed02e1b0bc6f167ed5398fa6369.zip |
Merge pull request #20545 from lewis6991/remove_cscope
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, |