diff options
author | Jersey <fonseca@uchicago.edu> | 2020-06-25 02:58:19 +0000 |
---|---|---|
committer | Jersey <fonseca@uchicago.edu> | 2020-06-25 02:58:19 +0000 |
commit | bbdd051475c88b8b2bbae0bfa4178e84a3bc23de (patch) | |
tree | c21f41ea8f8927c712070d266dafe5c96ab745f2 /ftplugin | |
parent | 5d546055e2a3c18d423f64da4d713935dfe38208 (diff) |
made commands silent
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/markdown_bujo.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/markdown_bujo.vim b/ftplugin/markdown_bujo.vim index 5d43926..22bdd19 100644 --- a/ftplugin/markdown_bujo.vim +++ b/ftplugin/markdown_bujo.vim | |||
@@ -1,6 +1,6 @@ | |||
1 | " Edit markdown lists | 1 | " Edit markdown lists |
2 | " Add and remove bullets with ease | 2 | " Add and remove bullets with ease |
3 | nnoremap <buffer> <Plug>BujoAddnormal i-[] | 3 | nnoremap <silent> <buffer> <Plug>BujoAddnormal i-[] |
4 | nnoremap <buffer> <Plug>BujoChecknormal :.s/\[\]/\[x\]<Enter> | 4 | nnoremap <silent> <buffer> <Plug>BujoChecknormal :.s/\[\]/\[x\]<Enter> |
5 | inoremap <buffer> <Plug>BujoAddinsert -[] | 5 | inoremap <silent> <buffer> <Plug>BujoAddinsert -[] |
6 | inoremap <buffer> <Plug>BujoCheckinsert <esc>:.s/\[\]/\[x\]<Enter> | 6 | inoremap <silent> <buffer> <Plug>BujoCheckinsert <esc>:.s/\[\]/\[x\]<Enter> |