1

Update generated neovim config

This commit is contained in:
2024-09-22 20:41:25 +02:00
parent 1743764e48
commit aa1271c42c
1247 changed files with 26512 additions and 15067 deletions

View File

@ -12,7 +12,7 @@
- configurable **signs**
- open todos in a **quickfix** list
- open todos in [Trouble](https://github.com/folke/trouble.nvim)
- search todos with [Telescope](https://github.com/nvim-telescope/telescope.nvim)
- search todos with [Telescope](https://github.com/nvim-telescope/telescope.nvim) & [FzfLua](https://github.com/ibhagwan/fzf-lua)
## ⚡️ Requirements
@ -22,6 +22,7 @@
+ [ripgrep](https://github.com/BurntSushi/ripgrep) and [plenary.nvim](https://github.com/nvim-lua/plenary.nvim) are used for searching.
+ [Trouble](https://github.com/folke/trouble.nvim)
+ [Telescope](https://github.com/nvim-telescope/telescope.nvim)
+ [FzfLua](https://github.com/ibhagwan/fzf-lua)
## 📦 Installation
@ -184,6 +185,9 @@ Search through all project todos with Telescope
![image](https://user-images.githubusercontent.com/292349/118135371-ccb91200-b3b7-11eb-9002-66af3b683cf0.png)
> [!Note]
> The same can be done with `:TodoFzfLua`
<!-- markdownlint-disable-file MD033 -->
<!-- markdownlint-configure-file { "MD013": { "line_length": 120 } } -->
<!-- markdownlint-configure-file { "MD004": { "style": "sublist" } } -->

View File

@ -1,4 +1,4 @@
*todo-comments.nvim.txt* For Neovim Last change: 2024 July 22
*todo-comments.nvim.txt* For Neovim Last change: 2024 August 31
==============================================================================
Table of Contents *todo-comments.nvim-table-of-contents*
@ -25,7 +25,7 @@ FEATURES *todo-comments.nvim-todo-comments-features*
- configurable **signs**
- open todos in a **quickfix** list
- open todos in Trouble <https://github.com/folke/trouble.nvim>
- search todos with Telescope <https://github.com/nvim-telescope/telescope.nvim>
- search todos with Telescope <https://github.com/nvim-telescope/telescope.nvim> & FzfLua <https://github.com/ibhagwan/fzf-lua>
REQUIREMENTS *todo-comments.nvim-todo-comments-requirements*
@ -36,6 +36,7 @@ REQUIREMENTS *todo-comments.nvim-todo-comments-requirements*
- ripgrep <https://github.com/BurntSushi/ripgrep> and plenary.nvim <https://github.com/nvim-lua/plenary.nvim> are used for searching.
- Trouble <https://github.com/folke/trouble.nvim>
- Telescope <https://github.com/nvim-telescope/telescope.nvim>
- FzfLua <https://github.com/ibhagwan/fzf-lua>
INSTALLATION *todo-comments.nvim-todo-comments-installation*
@ -200,6 +201,8 @@ Use Troubles filtering: `Trouble todo filter = {tag = {TODO,FIX,FIXME}}`
Search through all project todos with Telescope
[!Note] The same can be done with `:TodoFzfLua`
==============================================================================
2. Links *todo-comments.nvim-links*

View File

@ -1,4 +1,5 @@
command! -nargs=* TodoQuickFix lua require("todo-comments.search").setqflist(<q-args>)
command! -nargs=* TodoLocList lua require("todo-comments.search").setloclist(<q-args>)
command! -nargs=* TodoTelescope Telescope todo-comments todo <args>
command! -nargs=* TodoFzfLua lua require("todo-comments.fzf").todo() <args>
command! -nargs=* TodoTrouble Trouble todo <args>