Files
org-vim/runtime/syntax/testdir/input/vim_ex_make.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
515 B
VimL
Raw Normal View History

" Vim :*make commands
" VIM_TEST_SETUP hi link vimCmdSep Operator
" VIM_TEST_SETUP hi link vimMakeBarEscape Special
make
lmake
make!
lmake!
make -options target
lmake -options target
make! -options target
lmake! -options target
" Special filename characters
make %
lmake %
" Trailing bar, no tail comment
make tar\|get | echo "Foo"
lmake tar\|get | echo "Foo"
make! tar\|get | echo "Foo"
lmake! tar\|get | echo "Foo"
make | echo "Foo"
lmake | echo "Foo"
make! | echo "Foo"
lmake! | echo "Foo"