aboutsummaryrefslogtreecommitdiffstats
path: root/syntax/todo.vim
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2019-06-28 13:34:47 +0200
committerGravatar Tim Segers <tsegers@pm.me>2019-06-28 13:34:47 +0200
commit43eb1eccb2494da9eed0e0d06c694d43c57acbdd (patch)
tree29e8c39654338f06d1dcaf43403871f80ea58c9b /syntax/todo.vim
parentd9699871f0638e413af5c681b0ccd23902dedaff (diff)
downloadtodo.vim-43eb1eccb2494da9eed0e0d06c694d43c57acbdd.tar.gz
Add syntax, snippets and example fileHEADmaster
Diffstat (limited to 'syntax/todo.vim')
-rw-r--r--syntax/todo.vim96
1 files changed, 96 insertions, 0 deletions
diff --git a/syntax/todo.vim b/syntax/todo.vim
new file mode 100644
index 0000000..5584831
--- /dev/null
+++ b/syntax/todo.vim
@@ -0,0 +1,96 @@
+" Vim syntax file
+" Language: Org-mode TODO (ish)
+" Maintainer: Tim Segers <tsegers@pm.me>
+" Copyright: 2017 Tim Segers
+" License: MIT http://opensource.org/licenses/MIT
+" Last Change: 2018-08-20
+" Filenames: notes
+"
+if exists("b:current_syntax")
+ finish
+endif
+
+" org heading
+syn region todoHeader start="^\*\+" end="$"
+
+hi link todoHeader todoBold
+
+" todo statuses
+syn keyword todoDoing DOING containedin=todoHeader
+syn keyword todoDone DONE containedin=todoHeader
+syn keyword todoNope NOPE containedin=todoHeader
+syn keyword todoTodo TODO containedin=todoHeader
+syn keyword todoWait WAIT containedin=todoHeader
+
+hi link todoDoing Identifier
+hi link todoDone Constant
+hi link todoNope Comment
+hi link todoTodo Todo
+hi link todoWait Error
+
+" todo checkboxes
+syn match todoCbDelegated "\[d\]"
+syn match todoCbDoing "\[\-\]"
+syn match todoCbDone "\[x\]"
+syn match todoCbNope "\[n\]"
+syn match todoCbTodo "\[ \]"
+syn match todoCbWait "\[w\]"
+
+hi link todoCbDelegated Special
+hi link todoCbDoing Identifier
+hi link todoCbDone Constant
+hi link todoCbNope Comment
+hi link todoCbTodo Todo
+hi link todoCbWait Error
+
+" todo planning
+syn match todoDeadline /^DEADLINE .*/
+syn match todoScheduled /^SCHEDULED .*/
+syn match todoClosed /^CLOSED .*/
+
+hi link todoDeadline Special
+hi link todoScheduled Constant
+hi link todoClosed Underlined
+hi link todoDate Underlined
+
+" org affiliated keywords
+syn match todoAffil /#+\S\+:.*/
+
+hi link todoAffil Comment
+
+" org blocks
+syn match todoBlockDelim /#+BEGIN_.*/
+syn match todoBlockDelim /#+END_.*/
+syn region todoBlock start="#+BEGIN_.*" end="#+END_.*" keepend contains=todoBlockDelim
+
+hi link todoBlockDelim Comment
+hi link todoBlock String
+
+" custom blocks
+syn region todoAlert start="!!!" end="!!!"
+syn region todoVerb start="```" end="```"
+
+hi link todoAlert Special
+hi link todoVerb String
+
+" org lists
+syn match todoList "^\(\s*[-+]\|\s\+\*\)\(\s\|$\)" nextgroup=todoListItem
+syn match todoList "^\s*\(\a\|\d\+\)[.)]\(\s\|$\)" nextgroup=todoListItem
+
+syn match todoListItem /.*$/ contained contains=todoLink,todoCbDelegated,todoCbDoing,todoCbDone,todoCbNope,todoCbTodo,todoCbWait
+
+hi link todoList todoBold
+hi link todoListItem Normal
+hi link todoDef todoBold
+
+" urls
+syn match todoLinkOpen "\[\[" containedin=todoLink conceal
+syn match todoLinkClose "\]\]" containedin=todoLink conceal
+syn match todoLinkURL "[^][]*\]\[" containedin=todoLink conceal
+syn match todoLink "\[\[[^][]*\]\[[^][]*\]\]"
+
+hi link todoLink Underlined
+
+" extra defs
+hi def todoBold term=bold cterm=bold gui=bold
+