We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 735dd7a commit 2a16fc8Copy full SHA for 2a16fc8
README.md
@@ -54,7 +54,7 @@ yourself by adding the following to the file
54
`~/.vim/after/ftplugin/markdown.vim` (create it if it does not yet exist):
55
56
```vim
57
-nnoremap <buffer> Z! :<C-U>EvalBlock<CR>
+nmap <buffer> Z! <Plug>(medieval-eval)
58
```
59
60
## Limitations
ftplugin/markdown/medieval.vim
@@ -5,4 +5,6 @@ command! -bang -buffer -nargs=? EvalBlock
5
\ call medieval#eval(<q-args>) |
6
\ endif
7
8
+nnoremap <silent> <Plug>(medieval-eval) :<C-U>call medieval#eval()<CR>
9
+
10
let b:undo_ftplugin = get(b:, 'undo_ftplugin', '') . '|delc EvalBlock'
0 commit comments