comparison src/testdir/test_usercommands.vim @ 26576:5ea6db641b5e v8.2.3817

patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd Commit: https://github.com/vim/vim/commit/f87dac04c351583241ea1c4ec4228516431e6f22 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 15 17:53:40 2021 +0000 patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd Problem: Vim9: Not using NL as command end does not work for :autocmd. Solution: Only ignore NL for commands with an expression argument.
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Dec 2021 19:00:02 +0100
parents e36aefc588c2
children 8950a7b6cc89
comparison
equal deleted inserted replaced
26575:dfbdd4ea6937 26576:5ea6db641b5e
646 echo 'hello' 646 echo 'hello'
647 END 647 END
648 call CheckScriptFailure(lines, 'E1026:') 648 call CheckScriptFailure(lines, 'E1026:')
649 649
650 let lines =<< trim END 650 let lines =<< trim END
651 command BarCommand { 651 command HelloThere {
652 echo 'hello' | echo 'there' 652 echo 'hello' | echo 'there'
653 } 653 }
654 BarCommand 654 HelloThere
655 END 655 END
656 call CheckScriptFailure(lines, 'E1231:') 656 call CheckScriptSuccess(lines)
657 delcommand HelloThere
658
659 let lines =<< trim END
660 command BadCommand {
661 echo {
662 'key': 'value',
663 }
664 }
665 BadCommand
666 END
667 call CheckScriptFailure(lines, 'E1128:')
657 endfunc 668 endfunc
658 669
659 func Test_delcommand_buffer() 670 func Test_delcommand_buffer()
660 command Global echo 'global' 671 command Global echo 'global'
661 command -buffer OneBuffer echo 'one' 672 command -buffer OneBuffer echo 'one'