Mercurial > vim
view src/testdir/test_behave.vim @ 28773:d770568e6c98 v8.2.4911
patch 8.2.4911: the mode #defines are not clearly named
Commit: https://github.com/vim/vim/commit/249591057b4840785c50e41dd850efb8a8faf435
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 7 20:01:16 2022 +0100
patch 8.2.4911: the mode #defines are not clearly named
Problem: The mode #defines are not clearly named.
Solution: Prepend MODE_. Renumber them to put the mapped modes first.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 07 May 2022 21:15:06 +0200 |
parents | 08940efa6b4e |
children |
line wrap: on
line source
" Test the :behave command func Test_behave() behave mswin call assert_equal('mouse,key', &selectmode) call assert_equal('popup', &mousemodel) call assert_equal('startsel,stopsel', &keymodel) call assert_equal('exclusive', &selection) behave xterm call assert_equal('', &selectmode) call assert_equal('extend', &mousemodel) call assert_equal('', &keymodel) call assert_equal('inclusive', &selection) set selection& set mousemodel& set keymodel& set selection& endfunc func Test_behave_completion() call feedkeys(":behave \<C-A>\<C-B>\"\<CR>", 'tx') call assert_equal('"behave mswin xterm', @:) endfunc func Test_behave_error() call assert_fails('behave x', 'E475:') endfunc " vim: shiftwidth=2 sts=2 expandtab