diff options
author | Dan Reif <35710107+CH-DanReif@users.noreply.github.com> | 2018-06-05 14:18:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 14:18:09 -0700 |
commit | d362dca9b3373c2ddc8526eaa80b02bfaa274c7d (patch) | |
tree | 3016d45f4f2714937790a989be8adda3fe942ae3 /ftplugin/elm.vim | |
parent | a26134de3c09f9725667e14e7073a701bcff4e19 (diff) | |
parent | 1f34e0adcfb54b45760d7570d4c270a939daa03b (diff) | |
download | vim-polyglot-d362dca9b3373c2ddc8526eaa80b02bfaa274c7d.tar.gz vim-polyglot-d362dca9b3373c2ddc8526eaa80b02bfaa274c7d.zip |
Merge pull request #315 from sheerun/periodic_rebuild_20180605
Update (periodic rebuild)
Diffstat (limited to 'ftplugin/elm.vim')
-rw-r--r-- | ftplugin/elm.vim | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ftplugin/elm.vim b/ftplugin/elm.vim index 180e719c..c989d922 100644 --- a/ftplugin/elm.vim +++ b/ftplugin/elm.vim @@ -43,14 +43,14 @@ setlocal comments=:-- setlocal commentstring=--\ %s " Commands -command -buffer -nargs=? -complete=file ElmMake call elm#Make(<f-args>) -command -buffer ElmMakeMain call elm#Make("Main.elm") -command -buffer -nargs=? -complete=file ElmTest call elm#Test(<f-args>) -command -buffer ElmRepl call elm#Repl() -command -buffer ElmErrorDetail call elm#ErrorDetail() -command -buffer ElmShowDocs call elm#ShowDocs() -command -buffer ElmBrowseDocs call elm#BrowseDocs() -command -buffer ElmFormat call elm#Format() +command! -buffer -nargs=? -complete=file ElmMake call elm#Make(<f-args>) +command! -buffer ElmMakeMain call elm#Make("Main.elm") +command! -buffer -nargs=? -complete=file ElmTest call elm#Test(<f-args>) +command! -buffer ElmRepl call elm#Repl() +command! -buffer ElmErrorDetail call elm#ErrorDetail() +command! -buffer ElmShowDocs call elm#ShowDocs() +command! -buffer ElmBrowseDocs call elm#BrowseDocs() +command! -buffer ElmFormat call elm#Format() if get(g:, 'elm_setup_keybindings', 1) nmap <buffer> <LocalLeader>m <Plug>(elm-make) |