mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-16 07:23:48 -05:00
17 lines
258 B
VimL
17 lines
258 B
VimL
if polyglot#init#is_disabled(expand('<sfile>:p'), 'jsonnet', 'ftplugin/jsonnet.vim')
|
|
finish
|
|
endif
|
|
|
|
|
|
|
|
|
|
" -- fmt
|
|
command! -nargs=0 JsonnetFmt call jsonnet#Format()
|
|
|
|
" -- eval
|
|
command! -nargs=0 JsonnetEval call jsonnet#Eval()
|
|
|
|
setlocal commentstring=//\ %s
|
|
|
|
|