1

Added a "Write and Mkdir" command

This commit is contained in:
Evan Pratten 2023-07-03 15:17:28 -04:00
parent a8ea9c87d3
commit 029db6e062

View File

@ -82,3 +82,11 @@ endif
" Enable Leap
lua require('leap').add_default_mappings()
" Custom functions
function! MkdirAndWrite()
let dir = expand('%:p:h')
exec '!mkdir -p ' . dir
exec 'w'
endfunction
command Wmk call MkdirAndWrite()