diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-11-13 12:53:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-11-13 12:53:52 +0900 |
| commit | 74683ee2259e5eafc3960e4ba177f9c860026d1e (patch) | |
| tree | 525e7d98aa4587b9784e1d2d275f47cb9071d50f /.vim/my/syntax | |
| parent | 4cb2a109087addfaf20c5c4f0202f68e3e2c6d88 (diff) | |
| download | dotfiles-74683ee2259e5eafc3960e4ba177f9c860026d1e.tar.gz dotfiles-74683ee2259e5eafc3960e4ba177f9c860026d1e.tar.zst dotfiles-74683ee2259e5eafc3960e4ba177f9c860026d1e.zip | |
.vim: rm filetype todolist
Diffstat (limited to '.vim/my/syntax')
| -rw-r--r-- | .vim/my/syntax/todolist.vim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/.vim/my/syntax/todolist.vim b/.vim/my/syntax/todolist.vim deleted file mode 100644 index d2775e3..0000000 --- a/.vim/my/syntax/todolist.vim +++ /dev/null @@ -1,21 +0,0 @@ -scriptencoding utf-8 - - -if exists("b:current_syntax") - finish -endif - - - -syn match todolistCheckboxUnchecked /\[ \]/ -syn match todolistCheckboxChecked /\[x\]/ -syn region todolistComment start="//" end="$" - - - -hi def link todolistCheckboxUnchecked Operator -hi def link todolistCheckboxChecked Operator -hi def link todolistComment Comment - - -let b:current_syntax = "todolist" |
