diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-09-30 17:30:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-09-30 17:30:31 +0200 |
commit | 8f535582ad8fd706502bee619a19bbb29a981d9d (patch) | |
tree | 324fb89e20f2d94d5c306fa8f4528c43876a365f /src/ex_cmds.c | |
parent | 2369e35b39e4e5d1d586cf808770c4fb91faae72 (diff) | |
download | vim-8f535582ad8fd706502bee619a19bbb29a981d9d.zip |
updated for version 7.3.327
Problem: When jumping to a help tag a closed fold doesn't open.
Solution: Save and restore KeyTyped. (Yasuhiro Matsumoto)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 36b0e5228..b433bca40 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5508,6 +5508,9 @@ ex_help(eap) int len; char_u *lang; #endif +#ifdef FEAT_FOLDING + int old_KeyTyped = KeyTyped; +#endif if (eap != NULL) { @@ -5671,6 +5674,12 @@ ex_help(eap) if (!p_im) restart_edit = 0; /* don't want insert mode in help file */ +#ifdef FEAT_FOLDING + /* Restore KeyTyped, setting 'filetype=help' may reset it. + * It is needed for do_tag top open folds under the cursor. */ + KeyTyped = old_KeyTyped; +#endif + if (tag != NULL) do_tag(tag, DT_HELP, 1, FALSE, TRUE); |