diff --git a/README.md b/README.md index eda9121..17638bf 100644 --- a/README.md +++ b/README.md @@ -155,6 +155,16 @@ vim.api.nvim_set_keymap('n', '', | `live_grep_glob` | live_grep with `rg --glob` support | | `live_grep_native` | performant version of `live_grep` | +### Tags +| Command | List | +| ---------------- | ------------------------------------------ | +| `tags` | search project tags | +| `btags` | search buffer tags | +| `tags_grep` | grep project tags | +| `tags_grep_cword` | `tags_grep` word under cursor | +| `tags_grep_cWORD` | `tags_grep` WORD under cursor | +| `tags_grep_visual` | `tags_grep` visual selection | +| `tags_live_grep` | live grep project tags | ### Git | Command | List | @@ -198,13 +208,6 @@ vim.api.nvim_set_keymap('n', '', | `tagstack` | :tags | | `keymaps` | key mappings | | `spell_suggest` | spelling suggestions | -| `tags` | project tags | -| `tags_grep` | grep project tags | -| `tags_grep_cword` | tag search word under cursor | -| `tags_grep_cWORD` | tag search WORD under cursor | -| `tags_grep_visual` | tag search visual selection | -| `tags_live_grep` | live grep project tags | -| `btags` | buffer tags | | `filetypes` | neovim filetypes | | `packadd` | :packadd | diff --git a/doc/fzf-lua.txt b/doc/fzf-lua.txt index e0a600b..2c1b8d8 100644 --- a/doc/fzf-lua.txt +++ b/doc/fzf-lua.txt @@ -182,6 +182,20 @@ SEARCH *fzf-lua-search* +TAGS *fzf-lua-tags* + +| Command | List | +| ---------------- | ------------------------------------------ | +| `tags` | search project tags | +| `btags` | search buffer tags | +| `tags_grep` | grep project tags | +| `tags_grep_cword` | `tags_grep` word under cursor | +| `tags_grep_cWORD` | `tags_grep` WORD under cursor | +| `tags_grep_visual` | `tags_grep` visual selection | +| `tags_live_grep` | live grep project tags | + + + GIT *fzf-lua-git* | Command | List | @@ -231,13 +245,6 @@ MISC *fzf-lua-misc* | `tagstack` | :tags | | `keymaps` | key mappings | | `spell_suggest` | spelling suggestions | -| `tags` | project tags | -| `tags_grep` | grep project tags | -| `tags_grep_cword` | tag search word under cursor | -| `tags_grep_cWORD` | tag search WORD under cursor | -| `tags_grep_visual` | tag search visual selection | -| `tags_live_grep` | live grep project tags | -| `btags` | buffer tags | | `filetypes` | neovim filetypes | | `packadd` | :packadd |