summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShubham Saini <pryr@pryr.xyz>2023-01-24 03:24:47 +0000
committerShubham Saini <pryr@pryr.xyz>2023-01-24 03:24:47 +0000
commite6d9fa9127c0c0e1d41e0ad02ed49e8e1fc0bf83 (patch)
treec271e418944a0ec09696b122a149393c94b676ce
parentee3fecb5b3206b8073ac3fe4153391f320c99197 (diff)
changed pattern for md checklistHEADmaster
-rw-r--r--ftplugin/markdown_bujo.vim10
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
11function <SID>SearchCheck() 11function <SID>SearchCheck()
12 return (search('\[\]', 'nc', line('.')) || search('\[\]', 'nbc', line('.'))) 12 return (search('\[ \]', 'nc', line('.')) || search('\[ \]', 'nbc', line('.')))
13endfunction 13endfunction
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
18nnoremap <expr> <silent> <buffer> <Plug>BujoChecknormal <SID>SearchCheck() ? ':.s/\[\]/\[x\]<Enter>' : ':.s/\[x\]/\[\]<Enter>' 18nnoremap <expr> <silent> <buffer> <Plug>BujoChecknormal <SID>SearchCheck() ? ':.s/\[ \]/\[x\]<Enter>' : ':.s/\[x\]/\[ \]<Enter>'
19nnoremap <silent> <buffer> <Plug>BujoAddnormal i-[] 19nnoremap <silent> <buffer> <Plug>BujoAddnormal i- [ ]
20inoremap <silent> <buffer> <Plug>BujoAddinsert -[] 20inoremap <silent> <buffer> <Plug>BujoAddinsert - [ ]
21inoremap <expr> <silent> <buffer> <Plug>BujoCheckinsert <SID>SearchCheck() ? '<esc>:.s/\[\]/\[x\]<Enter>' : '<esc>:.s/\[x\]/\[\]<Enter>' 21inoremap <expr> <silent> <buffer> <Plug>BujoCheckinsert <SID>SearchCheck() ? '<esc>:.s/\[ \]/\[x\]<Enter>' : '<esc>:.s/\[x\]/\[ \]<Enter>'