Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```