Merge pull request #22 from alhirzel/master

typos
This commit is contained in:
Leandro Freitas
2014-11-01 19:17:59 -02:00
4 changed files with 9 additions and 9 deletions

View File

@@ -6,7 +6,7 @@
This plugin gives syntax highlighting to [todo.txt](http://todotxt.com/) files. It also defines a few
mappings, to help with edition of these files:
mappings, to help with editing these files:
`<leader>-s` : Sort the file
@@ -28,5 +28,5 @@ mappings, to help with edition of these files:
`<leader>-D` : Remove completed tasks
If you want the help installed run ":helptags ~/.vim/doc" inside vim after having copied the files.
If you want the help installed, run ":helptags ~/.vim/doc" inside vim after having copied the files.
Then you will be able to get the commands help with: :h todo.txt

View File

@@ -1,8 +1,8 @@
" File: todo.txt.vim
" Description: Todo.txt filetype detection
" Author: Leandro Freitas <freitass@gmail.com>
" Licence: Vim licence
" Website: http://github.com/freitass/todo.txt.vim
" License: Vim license
" Website: http://github.com/freitass/todo.txt-vim
" Version: 0.1
autocmd BufNewFile,BufRead [Tt]odo.txt set filetype=todo

View File

@@ -1,8 +1,8 @@
" File: todo.txt.vim
" Description: Todo.txt filetype detection
" Author: Leandro Freitas <freitass@gmail.com>
" Licence: Vim licence
" Website: http://github.com/freitass/todo.txt.vim
" License: Vim license
" Website: http://github.com/freitass/todo.txt-vim
" Version: 0.4
" Save context {{{1
@@ -28,7 +28,7 @@ endfunction
function! TodoTxtMarkAsDone()
call s:TodoTxtRemovePriority()
call TodoTxtPrependDate()
call TodoTxtPrependDate()
normal! Ix
endfunction

View File

@@ -1,8 +1,8 @@
" File: todo.txt.vim
" Description: Todo.txt syntax settings
" Author: Leandro Freitas <freitass@gmail.com>
" Licence: Vim licence
" Website: http://github.com/freitass/todo.txt.vim
" License: Vim license
" Website: http://github.com/freitass/todo.txt-vim
" Version: 0.3
if exists("b:current_syntax")