<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Test3</title><link>https://sourceforge.net/p/worv/wiki/Test3/</link><description>Recent changes to Test3</description><atom:link href="https://sourceforge.net/p/worv/wiki/Test3/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 17 May 2022 19:38:00 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/worv/wiki/Test3/feed" rel="self" type="application/rss+xml"/><item><title>Test3 modified by Roger Cuddy</title><link>https://sourceforge.net/p/worv/wiki/Test3/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,4 +1,7 @@
 *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 &amp;lt;https: github.com="" sakshamgupta05=""&amp;gt;
 License: MIT License
&amp;lt;/https:&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roger Cuddy</dc:creator><pubDate>Tue, 17 May 2022 19:38:00 -0000</pubDate><guid>https://sourceforge.neta053fd14eec10bc648188f33f781ced8089d2818</guid></item><item><title>Test3 modified by Roger Cuddy</title><link>https://sourceforge.net/p/worv/wiki/Test3/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,64 +1,67 @@
-" File: todo_highlight.vim
-" Author: Saksham Gupta &amp;lt;https: github.com="" sakshamgupta05=""&amp;gt;
-" Description: a Vim/Neovim plugin to highlight todos and fixmes
+*todo_highlight.txt*  a vim plugin to highlight todos and fixmes

-" make sure file is loaded only once
-if exists("g:loaded_todo_highlight")
-  finish
-endif
-let g:loaded_todo_highlight = 1
+Author: Saksham Gupta &amp;lt;https: github.com="" sakshamgupta05=""&amp;gt;
+License: MIT License
+Repository: https://github.com/sakshamgupta05/vim-todo-highlight

-" default highlight config
-let s:todo_highlight_config_default = {
-      \   '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'
-      \   }
-      \ }
+==============================================================================
+INTRODUCTION                                                *todo-highlight*

-" creates annotation group and highlight it according to the config
-function! s:CreateAnnotationGroup(annotation, config)
-  " set group name -&amp;gt; my_annotation
-  let l:group_name = 'my_' . tolower(a:annotation)
+This plugin helps you to remember the TODO: and FIXME: you have written in
+your code by highlighting them inside vim.

-  " make group for annotation where its pattern matches and is inside comment
-  execute 'augroup ' . l:group_name
-    autocmd!
-    execute 'autocmd Syntax * syntax match ' . l:group_name .
-          \ ' /\v\_.&amp;lt;' . a:annotation . ':/hs=s+1 containedin=.*Comment.*'
-  augroup END
+USAGE                                                 *todo-highlight-usage*

-  " highlight the group according to the config
-  if has('termguicolors')
-    execute 'hi ' l:group_name .
-          \ ' guifg = ' . get(a:config, 'gui_fg_color', s:todo_highlight_config_default['TODO']['gui_fg_color']) .
-          \ ' guibg = ' . get(a:config, 'gui_bg_color', s:todo_highlight_config_default['TODO']['gui_bg_color'])
-  else
-    execute 'hi ' l:group_name .
-          \ ' ctermfg = ' . get(a:config, 'cterm_fg_color', s:todo_highlight_config_default['TODO']['cterm_fg_color']) .
-          \ ' ctermbg = ' . get(a:config, 'cterm_bg_color', s:todo_highlight_config_default['TODO']['cterm_bg_color'])
-  endif
-endfunction
+Just type TODO: or FIXME: inside a comment and this plugin will highlight it
+for you.

-" highlights the default annotation groups (`TODO`, `FIXME`)
-for [annotation, config] in items(s:todo_highlight_config_default)
-  " check if user has disabled the default annotation
-  if !exists("g:todo_highlight_disable_default") || index(g:todo_highlight_disable_default, annotation) == -1
-    call s:CreateAnnotationGroup(annotation, config)
-  endif
-endfor
+==============================================================================
+CONFIGURATION                                 *todo-highlight-configuration*

-" highlights the user specified custom annotation groups
-if exists("g:todo_highlight_config")
-  for [annotation, config] in items(g:todo_highlight_config)
-    call s:CreateAnnotationGroup(annotation, config)
-  endfor
-endif
+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
+&amp;gt;
+  {
+    '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'
+    }
+  }
+&amp;lt;
+
+DISABLE DEFAULT ANNOTATIONS               *g:todo_highlight_disable_default*
+
+If you want to disable highlighting for the default annotations, configure
+as
+&amp;gt;
+  let g:todo_highlight_disable_default = ['TODO', 'FIXME']
+&amp;lt;
+
+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)
+&amp;gt;
+  let g:todo_highlight_config = {
+        \   'REVIEW': {},
+        \   'NOTE': {
+        \     'gui_fg_color': '#ffffff',
+        \     'gui_bg_color': '#ffbd2a',
+        \     'cterm_fg_color': 'white',
+        \     'cterm_bg_color': '214'
+        \   }
+        \ }
+&amp;lt;
&amp;lt;/https:&amp;gt;&amp;lt;/https:&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roger Cuddy</dc:creator><pubDate>Fri, 16 Jul 2021 00:59:16 -0000</pubDate><guid>https://sourceforge.netbbed9da57880dba134a7e651b7bce64438ff267c</guid></item><item><title>Test3 modified by Roger Cuddy</title><link>https://sourceforge.net/p/worv/wiki/Test3/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1 +1,64 @@
-https://support.microsoft.com/en-us/help/125996/saving-and-restoring-existing-windows-shares
+" File: todo_highlight.vim
+" Author: Saksham Gupta &amp;lt;https: github.com="" sakshamgupta05=""&amp;gt;
+" Description: a Vim/Neovim plugin to highlight todos and fixmes
+
+" make sure file is loaded only once
+if exists("g:loaded_todo_highlight")
+  finish
+endif
+let g:loaded_todo_highlight = 1
+
+" default highlight config
+let s:todo_highlight_config_default = {
+      \   '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'
+      \   }
+      \ }
+
+" creates annotation group and highlight it according to the config
+function! s:CreateAnnotationGroup(annotation, config)
+  " set group name -&amp;gt; my_annotation
+  let l:group_name = 'my_' . tolower(a:annotation)
+
+  " make group for annotation where its pattern matches and is inside comment
+  execute 'augroup ' . l:group_name
+    autocmd!
+    execute 'autocmd Syntax * syntax match ' . l:group_name .
+          \ ' /\v\_.&amp;lt;' . a:annotation . ':/hs=s+1 containedin=.*Comment.*'
+  augroup END
+
+  " highlight the group according to the config
+  if has('termguicolors')
+    execute 'hi ' l:group_name .
+          \ ' guifg = ' . get(a:config, 'gui_fg_color', s:todo_highlight_config_default['TODO']['gui_fg_color']) .
+          \ ' guibg = ' . get(a:config, 'gui_bg_color', s:todo_highlight_config_default['TODO']['gui_bg_color'])
+  else
+    execute 'hi ' l:group_name .
+          \ ' ctermfg = ' . get(a:config, 'cterm_fg_color', s:todo_highlight_config_default['TODO']['cterm_fg_color']) .
+          \ ' ctermbg = ' . get(a:config, 'cterm_bg_color', s:todo_highlight_config_default['TODO']['cterm_bg_color'])
+  endif
+endfunction
+
+" highlights the default annotation groups (`TODO`, `FIXME`)
+for [annotation, config] in items(s:todo_highlight_config_default)
+  " check if user has disabled the default annotation
+  if !exists("g:todo_highlight_disable_default") || index(g:todo_highlight_disable_default, annotation) == -1
+    call s:CreateAnnotationGroup(annotation, config)
+  endif
+endfor
+
+" highlights the user specified custom annotation groups
+if exists("g:todo_highlight_config")
+  for [annotation, config] in items(g:todo_highlight_config)
+    call s:CreateAnnotationGroup(annotation, config)
+  endfor
+endif
&amp;lt;/https:&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roger Cuddy</dc:creator><pubDate>Fri, 16 Jul 2021 00:51:18 -0000</pubDate><guid>https://sourceforge.net5cbb526c46306c00f77aa617301388c5ae3491e4</guid></item><item><title>Test3 modified by Roger Cuddy</title><link>https://sourceforge.net/p/worv/wiki/Test3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;a href="https://support.microsoft.com/en-us/help/125996/saving-and-restoring-existing-windows-shares" rel="nofollow"&gt;https://support.microsoft.com/en-us/help/125996/saving-and-restoring-existing-windows-shares&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roger Cuddy</dc:creator><pubDate>Tue, 13 Oct 2020 14:50:26 -0000</pubDate><guid>https://sourceforge.net38c1f8c28263ff52fb84d7b8841b8374fbeacd99</guid></item></channel></rss>