comparison src/testdir/check.vim @ 24268:9257f3980f4a v8.2.2675

patch 8.2.2675: directory change in a terminal window shell is not followed Commit: https://github.com/vim/vim/commit/8b9abfd86c736ed3f298dfa8b50a962c118b3983 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 29 20:49:05 2021 +0200 patch 8.2.2675: directory change in a terminal window shell is not followed Problem: Directory change in a terminal window shell is not followed. Solution: Add the 'autoshelldir' option. (closes https://github.com/vim/vim/issues/6290)
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Mar 2021 21:00:03 +0200
parents 09598e5ced97
children c39a64bc5ca2
comparison
equal deleted inserted replaced
24267:57c5644a9065 24268:9257f3980f4a
87 " Command to check for running on Linix 87 " Command to check for running on Linix
88 command CheckLinux call CheckLinux() 88 command CheckLinux call CheckLinux()
89 func CheckLinux() 89 func CheckLinux()
90 if !has('linux') 90 if !has('linux')
91 throw 'Skipped: only works on Linux' 91 throw 'Skipped: only works on Linux'
92 endif
93 endfunc
94
95 " Command to check for not running on a BSD system.
96 command CheckNotBSD call CheckNotBSD()
97 func CheckNotBSD()
98 if has('bsd')
99 throw 'Skipped: does not work on BSD'
92 endif 100 endif
93 endfunc 101 endfunc
94 102
95 " Command to check that making screendumps is supported. 103 " Command to check that making screendumps is supported.
96 " Caller must source screendump.vim 104 " Caller must source screendump.vim