diff options
author | Teddy Wing | 2023-07-09 02:33:46 +0200 |
---|---|---|
committer | Teddy Wing | 2023-07-18 00:52:23 +0200 |
commit | 2b5e8573bb558306b95dbc3502a76948bde83dcd (patch) | |
tree | 0eb2e256530f18c2e1027f074458e8d82b677528 | |
parent | 14a3ff2c2ee6180d826a5a0b7abf420ffc91ad73 (diff) | |
download | dotvim-2b5e8573bb558306b95dbc3502a76948bde83dcd.tar.bz2 |
ftplugin/ocaml.vim: Add test binding
-rw-r--r-- | ftplugin/ocaml.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ftplugin/ocaml.vim b/ftplugin/ocaml.vim index 559b37e..dc6974f 100644 --- a/ftplugin/ocaml.vim +++ b/ftplugin/ocaml.vim @@ -10,3 +10,4 @@ setlocal shiftwidth=2 nnoremap <buffer> Zr \ :execute '!eval $(opam env) && dune exec ' . fnameescape(expand('%:p:h:h:t'))<CR> nnoremap <buffer> Zb :!eval $(opam env) && dune build<CR> +nnoremap <buffer> <leader>z :!eval $(opam env) && dune test<CR> |