Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hallerpatrick/nvim_todo.vim
Neovim util to display all todos in your source code
https://github.com/hallerpatrick/nvim_todo.vim
Last synced: 10 days ago
JSON representation
Neovim util to display all todos in your source code
- Host: GitHub
- URL: https://github.com/hallerpatrick/nvim_todo.vim
- Owner: HallerPatrick
- Created: 2021-01-04T04:16:44.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-04T04:23:44.000Z (almost 4 years ago)
- Last Synced: 2024-12-08T18:04:56.545Z (17 days ago)
- Language: Lua
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nvim_todo.vim
A neovim plugin that quickl and neatly displays all you todos in your source code.
// TODO: Add screenshot
It uses the [ripgrep](https://github.com/BurntSushi/ripgrep) binary as the backend to search for `TODO` marker in
the code. So make sure to install it.# Installation
Just do this (with Vim Plug)
```
Plug 'HallerPatrick/nvim_todo.vim'
```# Usage
Only one command:
```
:TodoList
```Also always good to map this to a leader
```
nmap td :TodoList
```