mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
updated for version 7.0-207
This commit is contained in:
@@ -4440,6 +4440,35 @@ vim_strsave_escape_csi(p)
|
||||
return res;
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove escaping from CSI and K_SPECIAL characters. Reverse of
|
||||
* vim_strsave_escape_csi(). Works in-place.
|
||||
*/
|
||||
void
|
||||
vim_unescape_csi(p)
|
||||
char_u *p;
|
||||
{
|
||||
char_u *s = p, *d = p;
|
||||
|
||||
while (*s != NUL)
|
||||
{
|
||||
if (s[0] == K_SPECIAL && s[1] == KS_SPECIAL && s[2] == KE_FILLER)
|
||||
{
|
||||
*d++ = K_SPECIAL;
|
||||
s += 3;
|
||||
}
|
||||
else if ((s[0] == K_SPECIAL || s[0] == CSI)
|
||||
&& s[1] == KS_EXTRA && s[2] == (int)KE_CSI)
|
||||
{
|
||||
*d++ = CSI;
|
||||
s += 3;
|
||||
}
|
||||
else
|
||||
*d++ = *s++;
|
||||
}
|
||||
*d = NUL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Write map commands for the current mappings to an .exrc file.
|
||||
* Return FAIL on error, OK otherwise.
|
||||
|
Reference in New Issue
Block a user