mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.3.026
Problem: CTRL-] in a help file doesn't always work. (Tony Mechelynck) Solution: Don't escape special characters. (Carlo Teubner)
This commit is contained in:
parent
78f74a91bf
commit
77a0aa457d
@ -5666,8 +5666,13 @@ nv_ident(cap)
|
||||
else if (cmdchar == '#')
|
||||
aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
|
||||
else if (tag_cmd)
|
||||
/* Don't escape spaces and Tabs in a tag with a backslash */
|
||||
{
|
||||
if (curbuf->b_help)
|
||||
/* ":help" handles unescaped argument */
|
||||
aux_ptr = (char_u *)"";
|
||||
else
|
||||
aux_ptr = (char_u *)"\\|\"\n[";
|
||||
}
|
||||
else
|
||||
aux_ptr = (char_u *)"\\|\"\n*?[";
|
||||
|
||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
26,
|
||||
/**/
|
||||
25,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user