mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge #7924 'test/old: various fixes'
This commit is contained in:
commit
b251c42195
@ -941,9 +941,6 @@ void ex_diffpatch(exarg_T *eap)
|
||||
}
|
||||
#endif
|
||||
|
||||
// patch probably has written over the screen
|
||||
redraw_later(CLEAR);
|
||||
|
||||
// Delete any .orig or .rej file created.
|
||||
STRCPY(buf, tmp_new);
|
||||
STRCAT(buf, ".orig");
|
||||
|
@ -11,7 +11,7 @@ SCRIPTSOURCE := ../../../runtime
|
||||
|
||||
export SHELL := sh
|
||||
export NVIM_PRG := $(NVIM_PRG)
|
||||
export TMPDIR := Xtest-tmpdir
|
||||
export TMPDIR := $(abspath ../../../Xtest-tmpdir)
|
||||
|
||||
SCRIPTS_DEFAULT = \
|
||||
test14.out \
|
||||
|
@ -152,8 +152,8 @@ func Test_set_completion()
|
||||
|
||||
" Expand directories.
|
||||
call feedkeys(":set cdpath=./\<C-A>\<C-B>\"\<CR>", 'tx')
|
||||
call assert_match(' ./samples/ ', @:)
|
||||
call assert_notmatch(' ./small.vim ', @:)
|
||||
call assert_match('./samples/ ', @:)
|
||||
call assert_notmatch('./small.vim ', @:)
|
||||
|
||||
" Expand files and directories.
|
||||
call feedkeys(":set tags=./\<C-A>\<C-B>\"\<CR>", 'tx')
|
||||
|
Loading…
Reference in New Issue
Block a user