diff --git a/ftdetect/todo.txt.vim b/ftdetect/todo.txt.vim deleted file mode 100644 index f0dcbdc..0000000 --- a/ftdetect/todo.txt.vim +++ /dev/null @@ -1,9 +0,0 @@ -" File: todo.txt.vim -" Description: Todo.txt filetype detection -" Author: Leandro Freitas -" Licence: Vim licence -" Website: http://github.com/freitass/todo.txt.vim -" Version: 0.1 - -autocmd BufNewFile,BufRead Todo.txt set filetype=todo.txt - diff --git a/ftplugin/todo.txt.vim b/ftplugin/todo.txt.vim deleted file mode 100644 index e69de29..0000000 diff --git a/syntax/todo.txt.vim b/syntax/todo.txt.vim deleted file mode 100644 index 1b7cfa9..0000000 --- a/syntax/todo.txt.vim +++ /dev/null @@ -1,46 +0,0 @@ -" File: todo.txt.vim -" Description: Todo.txt syntax settings -" Author: Leandro Freitas -" Licence: Vim licence -" Website: http://github.com/freitass/todo.txt.vim -" Version: 0.1 - -if exists("b:current_syntax") - finish -endif - -syntax match TodoDone '^[xX]\s.*$' -syntax match TodoPriorityA '^([aA])\s.*$' -syntax match TodoPriorityB '^([bB])\s.*$' -syntax match TodoPriorityC '^([cC])\s.*$' -syntax match TodoPriorityD '^([dD])\s.*$' -syntax match TodoPriorityE '^([eE])\s.*$' -syntax match TodoPriorityF '^([fF])\s.*$' -syntax match TodoPriorityG '^([gG])\s.*$' -syntax match TodoPriorityH '^([hH])\s.*$' -syntax match TodoPriorityI '^([iI])\s.*$' -syntax match TodoPriorityJ '^([jJ])\s.*$' -syntax match TodoPriorityK '^([kK])\s.*$' -syntax match TodoPriorityL '^([lL])\s.*$' -syntax match TodoPriorityM '^([mM])\s.*$' -syntax match TodoPriorityN '^([nN])\s.*$' -syntax match TodoPriorityO '^([oO])\s.*$' -syntax match TodoPriorityP '^([pP])\s.*$' -syntax match TodoPriorityQ '^([qQ])\s.*$' -syntax match TodoPriorityR '^([rR])\s.*$' -syntax match TodoPriorityS '^([sS])\s.*$' -syntax match TodoPriorityT '^([tT])\s.*$' -syntax match TodoPriorityU '^([uU])\s.*$' -syntax match TodoPriorityV '^([vV])\s.*$' -syntax match TodoPriorityW '^([wW])\s.*$' -syntax match TodoPriorityX '^([xX])\s.*$' -syntax match TodoPriorityY '^([yY])\s.*$' -syntax match TodoPriorityZ '^([zZ])\s.*$' - -" Other priority colours might be defined by the user -highlight default link TodoDone Comment -highlight default link TodoPriorityA Constant -highlight default link TodoPriorityB Statement -highlight default link TodoPriorityC Identifier - -let b:current_syntax = "todo.txt"