mirror of
git://git.code.sf.net/p/zsh/code
synced 2026-01-03 20:51:07 +01:00
better cursor positioning in words with multiple ambiguous word parts (11248)
This commit is contained in:
parent
7d17c9ca4b
commit
029483745b
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2000-05-08 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 11248: Src/Zle/compmatch.c: better cursor positioning in words
|
||||
with multiple ambiguous word parts
|
||||
|
||||
2000-05-08 Tanaka Akira <akr@zsh.org>
|
||||
|
||||
* Bart, Tanaka Akira: 11247: Don't signal to a process group which
|
||||
|
|
|
|||
|
|
@ -211,9 +211,9 @@ void
|
|||
cline_setlens(Cline l, int both)
|
||||
{
|
||||
while (l) {
|
||||
l->max = cline_sublen(l);
|
||||
l->min = cline_sublen(l);
|
||||
if (both)
|
||||
l->min = l->max;
|
||||
l->max = l->min;
|
||||
l = l->next;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue