HTML comments and better TODO
* Allow HTML-style comment syntax Allow <!-- HTML comments --> in vimwiki's highlight for markdown. * Avoid matching "TODO" on word boundaries Do not match e.g. "xTODO:" as if it were "TODO:". This also lifts the requirement of ":" after these keywords (it is more flexible to just require a word boundary regardless of what).
This commit is contained in:
		
				
					committed by
					
						 EinfachToll
						EinfachToll
					
				
			
			
				
	
			
			
			
						parent
						
							52f3bf7c3b
						
					
				
				
					commit
					1c4a9bb1af
				
			| @@ -295,7 +295,7 @@ if vimwiki#vars#get_global('valid_html_tags') != '' | ||||
|   execute 'syntax match VimwikiItalic #\c<i>.\{-}</i># contains=VimwikiHTMLTag' | ||||
|   execute 'syntax match VimwikiUnderline #\c<u>.\{-}</u># contains=VimwikiHTMLTag' | ||||
|  | ||||
|   execute 'syntax match VimwikiComment /'.vimwiki#vars#get_syntaxlocal('rxComment').'/ contains=@Spell' | ||||
|   execute 'syntax match VimwikiComment /'.vimwiki#vars#get_syntaxlocal('rxComment').'/ contains=@Spell,VimwikiTodo' | ||||
| endif | ||||
|  | ||||
| " tags | ||||
|   | ||||
		Reference in New Issue
	
	Block a user