From 8b9abfd86c736ed3f298dfa8b50a962c118b3983 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 29 Mar 2021 20:49:05 +0200 Subject: 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 #6290) --- src/feature.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/feature.h') diff --git a/src/feature.h b/src/feature.h index 5f6f800c2..4df73d1cb 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1147,6 +1147,12 @@ # define FEAT_SYN_HL #endif +/* + * +autoshelldir 'autoshelldir' option. + */ +#if defined(FEAT_TERMINAL) +# define FEAT_AUTOSHELLDIR +#endif /* * +textprop and +popupwin Text PROPerties and POPUP windows */ -- cgit v1.2.1