diff options
author | Teddy Wing | 2023-07-16 21:04:16 +0200 |
---|---|---|
committer | Teddy Wing | 2023-07-18 00:52:23 +0200 |
commit | 5d62cf5e727fd2261891dd84f615c5d64831ea63 (patch) | |
tree | 3fd88547121cc730053082320771f43410d0d968 /ftplugin | |
parent | 2b5e8573bb558306b95dbc3502a76948bde83dcd (diff) | |
download | dotvim-5d62cf5e727fd2261891dd84f615c5d64831ea63.tar.bz2 |
ftplugin/ocaml.vim: Add `dune promote` binding
Diffstat (limited to 'ftplugin')
-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 dc6974f..8b91aad 100644 --- a/ftplugin/ocaml.vim +++ b/ftplugin/ocaml.vim @@ -11,3 +11,4 @@ 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> +nnoremap <buffer> Zp :!eval $(opam env) && dune promote<CR> |