diff options
Diffstat (limited to 'ftplugin')
| -rw-r--r-- | ftplugin/markdown_bujo.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ftplugin/markdown_bujo.vim b/ftplugin/markdown_bujo.vim index 2330b35..369983c 100644 --- a/ftplugin/markdown_bujo.vim +++ b/ftplugin/markdown_bujo.vim | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | " | 9 | " |
| 10 | " search() returns 0 if it the pattern was not found | 10 | " search() returns 0 if it the pattern was not found |
| 11 | function <SID>SearchCheck() | 11 | function <SID>SearchCheck() |
| 12 | return (search('\[\]', 'nc', line('.')) || search('\[\]', 'nbc', line('.'))) | 12 | return (search('\[ \]', 'nc', line('.')) || search('\[ \]', 'nbc', line('.'))) |
| 13 | endfunction | 13 | endfunction |
| 14 | 14 | ||
| 15 | " Edit markdown lists | 15 | " Edit markdown lists |
| 16 | " Add and remove bullets with ease | 16 | " Add and remove bullets with ease |
| 17 | " If we are already checked then we uncheck | 17 | " If we are already checked then we uncheck |
| 18 | nnoremap <expr> <silent> <buffer> <Plug>BujoChecknormal <SID>SearchCheck() ? ':.s/\[\]/\[x\]<Enter>' : ':.s/\[x\]/\[\]<Enter>' | 18 | nnoremap <expr> <silent> <buffer> <Plug>BujoChecknormal <SID>SearchCheck() ? ':.s/\[ \]/\[x\]<Enter>' : ':.s/\[x\]/\[ \]<Enter>' |
| 19 | nnoremap <silent> <buffer> <Plug>BujoAddnormal i-[] | 19 | nnoremap <silent> <buffer> <Plug>BujoAddnormal i- [ ] |
| 20 | inoremap <silent> <buffer> <Plug>BujoAddinsert -[] | 20 | inoremap <silent> <buffer> <Plug>BujoAddinsert - [ ] |
| 21 | inoremap <expr> <silent> <buffer> <Plug>BujoCheckinsert <SID>SearchCheck() ? '<esc>:.s/\[\]/\[x\]<Enter>' : '<esc>:.s/\[x\]/\[\]<Enter>' | 21 | inoremap <expr> <silent> <buffer> <Plug>BujoCheckinsert <SID>SearchCheck() ? '<esc>:.s/\[ \]/\[x\]<Enter>' : '<esc>:.s/\[x\]/\[ \]<Enter>' |
