这是indexloc提供的服务,不要输入任何密码
Skip to content

Tags: tesuji/vim

Tags

v8.2.0735

Toggle v8.2.0735's commit message
patch 8.2.0735: Vim9: using unitialized memory

Problem:    Vim9: using unitialized memory.
Solution:   Clear the arg_lvar field.

v8.2.0734

Toggle v8.2.0734's commit message
patch 8.2.0734: Vim9: leaking memory when using :finish

Problem:    Vim9: leaking memory when using :finish.
Solution:   Do not check for next line in third pass.

v8.2.0733

Toggle v8.2.0733's commit message
patch 8.2.0733: Vim9: assigning to dict or list argument does not work

Problem:    Vim9: assigning to dict or list argument does not work.
Solution:   Recognize an argument as assignment target.

v8.2.0732

Toggle v8.2.0732's commit message
patch 8.2.0732: Vim9: storing value in dict messes up stack

Problem:    Vim9: storing value in dict messes up stack.
Solution:   Correct item count of stack.

v8.2.0731

Toggle v8.2.0731's commit message
patch 8.2.0731: Vim9: parsing declarations continues after :finish

Problem:    Vim9: parsing declarations continues after :finish.
Solution:   Bail out when encountering :finish.

v8.2.0730

Toggle v8.2.0730's commit message
patch 8.2.0730: Vim9: Assignment to dict member does not work

Problem:    Vim9: Assignment to dict member does not work.
Solution:   Parse dict assignment. Implement getting dict member.

v8.2.0729

Toggle v8.2.0729's commit message
patch 8.2.0729: Vim9: When reloading a script variables are not cleared

Problem:    Vim9: When reloading a script variables are not cleared.
Solution:   When sourcing a script again clear all script-local variables.

v8.2.0728

Toggle v8.2.0728's commit message
patch 8.2.0728: messages about a deadly signal are not left aligned

Problem:    Messages about a deadly signal are not left aligned.
Solution:   Output a CR before the NL. (Dominique Pelle, vim#6055)

v8.2.0727

Toggle v8.2.0727's commit message
patch 8.2.0727: MS-Windows: new gcc compiler does not support scanf f…

…ormat

Problem:    MS-Windows: new gcc compiler does not support scanf format.
Solution:   Use "%ll" instead of "%I". (Ken Takata)

v8.2.0726

Toggle v8.2.0726's commit message
patch 8.2.0726: Vim9: leaking memory when calling not compiled :def f…

…unction

Problem:    Vim9: leaking memory when calling not compiled :def function.
Solution:   Check if function is compiled earlier.