diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-09 17:19:09 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-09 17:33:49 +0800 |
| commit | 65359e565714a2f1b75aa5cee88d8ee0874f75f6 (patch) | |
| tree | b1d8835aa0f3c5fd8de667d6c3c847323322d140 /src/nvim/testdir/setup.vim | |
| parent | 12f0ef669d8f826afbfcecf25b492ffad62d19e7 (diff) | |
| download | rneovim-65359e565714a2f1b75aa5cee88d8ee0874f75f6.tar.gz rneovim-65359e565714a2f1b75aa5cee88d8ee0874f75f6.tar.bz2 rneovim-65359e565714a2f1b75aa5cee88d8ee0874f75f6.zip | |
vim-patch:8.2.0396: cmdexpand.c insufficiently tested
Problem: Cmdexpand.c insufficiently tested.
Solution: Add more tests. (Yegappan Lakshmanan, closes vim/vim#5789)
https://github.com/vim/vim/commit/24ebd83e030e1c6f9a6be1f06232756ba4d00a8c
Map Q to gQ before every test since a test uses :mapclear.
Diffstat (limited to 'src/nvim/testdir/setup.vim')
| -rw-r--r-- | src/nvim/testdir/setup.vim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/testdir/setup.vim b/src/nvim/testdir/setup.vim index 91e0b3bea7..ff1ad30b12 100644 --- a/src/nvim/testdir/setup.vim +++ b/src/nvim/testdir/setup.vim @@ -31,10 +31,6 @@ set switchbuf= mapclear mapclear! -" Make "Q" switch to Ex mode. -" This does not work for all tests. -nnoremap Q gQ - " Prevent Nvim log from writing to stderr. let $NVIM_LOG_FILE = exists($NVIM_LOG_FILE) ? $NVIM_LOG_FILE : 'Xnvim.log' |