mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

Improved VIM Support - added vim support for undo.data - eliminated misc. whitespace per Bram Moolenaar's request - added Updated time stamp per Bram Moolenaar's request
18 lines
517 B
VimL
18 lines
517 B
VimL
" Vim support file to detect task data files and single task edits
|
|
"
|
|
" Maintainer: John Florian <jflorian@doubledog.org>
|
|
" Updated: Wed Jul 8 19:45:55 EDT 2009
|
|
"
|
|
" Copyright 2009 John Florian
|
|
"
|
|
" This file is available under the GNU Public License version 2 or later.
|
|
" For the full text of this license, see COPYING.
|
|
|
|
|
|
" for the raw data files
|
|
au BufRead,BufNewFile {pending,completed,undo}.data set filetype=taskdata
|
|
|
|
" for 'task 42 edit'
|
|
au BufRead,BufNewFile *.task set filetype=taskedit
|
|
|
|
" vim:noexpandtab
|