diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-06 02:44:15 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2017-08-06 04:22:45 +0200 |
| commit | 3827d5bc713d9ed149bc793f411debb5b89a4eba (patch) | |
| tree | fc61484a30532ef89f24c5b60534dccc56408d17 /src/nvim/testdir | |
| parent | d801ce70c1fb8dd8b3735ca9e06158aaf48203ba (diff) | |
| download | rneovim-3827d5bc713d9ed149bc793f411debb5b89a4eba.tar.gz rneovim-3827d5bc713d9ed149bc793f411debb5b89a4eba.tar.bz2 rneovim-3827d5bc713d9ed149bc793f411debb5b89a4eba.zip | |
input: skip dialogs if no UI is active
Treat dialogs in the same way as "silent mode" (`nvim -es`).
References #1984
References #3901
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test49.vim | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/testdir/test49.vim b/src/nvim/testdir/test49.vim index a0e170dea4..467abcd9b9 100644 --- a/src/nvim/testdir/test49.vim +++ b/src/nvim/testdir/test49.vim @@ -481,12 +481,9 @@ function! ExtraVim(...) bwipeout let g:Xpath = g:Xpath + sum - " FIXME(nvim): delete() of a file used by a subprocess hangs TSAN build on travis CI. - if !empty($TRAVIS) " Delete the extra script and the resultfile. call delete(extra_script) call delete(resultfile) - endif " Switch back to the buffer that was active when this function was entered. exec "buffer" current_buffnr |