todo_highlight.txt a vim plugin to highlight todos and fixmes
https://www.apachehaus.com/downloads/httpd-2.4.53-o111o-x86-vs17.zip
https://www.apachehaus.com/downloads/httpd-2.4.53-o111o-x86-vs16.zip
https://www.apachehaus.com/downloads/mod_authn_ntlm-1.0.8-x86-vs16.zip
Author: Saksham Gupta https://github.com/sakshamgupta05
License: MIT License
Repository: https://github.com/sakshamgupta05/vim-todo-highlight
==============================================================================
INTRODUCTION todo-highlight
This plugin helps you to remember the TODO: and FIXME: you have written in
your code by highlighting them inside vim.
USAGE todo-highlight-usage
Just type TODO: or FIXME: inside a comment and this plugin will highlight it
for you.
==============================================================================
CONFIGURATION todo-highlight-configuration
DEFAULT CONFIGURATION todo-highlight-default
gui : HEX colors for terminals that support 24bit true colour
cterm : 256 colors for terminals that support only 256 colour palette
fg_color : text color
bg_color : background color
{
'TODO': {
'gui_fg_color': '#ffffff',
'gui_bg_color': '#ffbd2a',
'cterm_fg_color': 'white',
'cterm_bg_color': '214'
},
'FIXME': {
'gui_fg_color': '#ffffff',
'gui_bg_color': '#f06292',
'cterm_fg_color': 'white',
'cterm_bg_color': '204'
}
}
<
DISABLE DEFAULT ANNOTATIONS g:todo_highlight_disable_default
If you want to disable highlighting for the default annotations, configure
as
let g:todo_highlight_disable_default = ['TODO', 'FIXME']
<
ADD CUSTOM ANNOTATIONS g:todo_highlight_config
To add your own custom annotations and/or customize colors for existing
annotations, configure as (if you leave any attribute as blank,
the default(TODO) configurations will be used)
let g:todo_highlight_config = {
\ 'REVIEW': {},
\ 'NOTE': {
\ 'gui_fg_color': '#ffffff',
\ 'gui_bg_color': '#ffbd2a',
\ 'cterm_fg_color': 'white',
\ 'cterm_bg_color': '214'
\ }
\ }
<