-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(fzf): add fzf-lua support in Readme & add TodoFzfLua command (#312)
## Description <!-- Describe the big picture of your changes to communicate to the maintainers why we should accept this pull request. --> This plugin has support `fzf-lua` ( an alternative to `Telescope` ) in lua/fzf.lua. But nowhere in the `README` it is said that there's `fzf-lua` support, so i added it explicitly in the `README`. There's also no commands to call the function so i added the `TodoFzfLua` command Co-authored-by: user <[email protected]>
- Loading branch information
1 parent
8f45f35
commit 6d6cf47
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |