Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gilsondev/searchtasks.vim
Plugin to search the labels often used as TODO, FIXME and XXX.
https://github.com/gilsondev/searchtasks.vim
Last synced: 3 months ago
JSON representation
Plugin to search the labels often used as TODO, FIXME and XXX.
- Host: GitHub
- URL: https://github.com/gilsondev/searchtasks.vim
- Owner: gilsondev
- Created: 2012-10-17T17:13:51.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-10-26T17:09:54.000Z (about 7 years ago)
- Last Synced: 2024-06-18T14:37:08.204Z (5 months ago)
- Language: Vim script
- Size: 4.88 KB
- Stars: 21
- Watchers: 3
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# Search Tasks - Search TODO, FIXME and XXX in your project
## Introduction
When you develop, it is likely that inserts comments that serves
as a reminder of what needs to improve, implement, or withdraw future.
You also have situations where you need to put a comment from a hack
who made or an encoding that need a better fix.For it is common to use labels TODO, FIXME and XXX in comments.
But how does all of them to look in a directory containing your source code?This plugin help and do a scan of all kinds of comments that matches the labels used.
## Commands
```vimL
" Search in root directory (TODO, FIXME, XXX)
:SearchTasks ." Search in directory app/ in files .py
:SearchTasks app/*.py" Search with grep
:SearchTasksGrep **/*.php
```## Configuration
If you want to change or enter new labels for searchtask search, just enter the following in your configuration ``.vimrc``:
```vimL
" List occurrences for search
let g:searchtasks_list=["TODO", "FIXME", "XXX"]
```