diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-03-29 20:49:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-03-29 20:49:05 +0200 |
commit | 8b9abfd86c736ed3f298dfa8b50a962c118b3983 (patch) | |
tree | 65874e39326cd7bfa6f8a73861bb00d01d5e4d76 /src/feature.h | |
parent | 9dbe701fe19597ad59c0e0c70a05927b587bea9f (diff) | |
download | vim-git-8b9abfd86c736ed3f298dfa8b50a962c118b3983.tar.gz |
patch 8.2.2675: directory change in a terminal window shell is not followedv8.2.2675
Problem: Directory change in a terminal window shell is not followed.
Solution: Add the 'autoshelldir' option. (closes #6290)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h index 5f6f800c2..4df73d1cb 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1148,6 +1148,12 @@ #endif /* + * +autoshelldir 'autoshelldir' option. + */ +#if defined(FEAT_TERMINAL) +# define FEAT_AUTOSHELLDIR +#endif +/* * +textprop and +popupwin Text PROPerties and POPUP windows */ #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL) |