Skip to content

Tags: neomutt/vim

Tags

v8.1.2286

Toggle v8.1.2286's commit message
patch 8.1.2286: using border highlight in popup window leaks memory

Problem:    Using border highlight in popup window leaks memory.
Solution:   Free memory before overwriting. (Dominique Pelle, closes vim#5203)

v8.1.2285

Toggle v8.1.2285's commit message
patch 8.1.2285: padding in structures wastes memory

Problem:    Padding in structures wastes memory.
Solution:   Move fields to avoid padding. (Dominique Pelle, closes vim#5202)

v8.1.2284

Toggle v8.1.2284's commit message
patch 8.1.2284: compiler warning for unused variable

Problem:    Compiler warning for unused variable. (Tony Mechelynck)
Solution:   Add #ifdef.

v8.1.2283

Toggle v8.1.2283's commit message
patch 8.1.2283: missed on use of p_sbr

Problem:    Missed on use of p_sbr.
Solution:   Add missing p_sbr change.

v8.1.2282

Toggle v8.1.2282's commit message
patch 8.1.2282: crash when passing many arguments through a partial

Problem:    Crash when passing many arguments through a partial. (Andy
            Massimino)
Solution:   Check the number of arguments. (closes vim#5186)

v8.1.2281

Toggle v8.1.2281's commit message
patch 8.1.2281: 'showbreak' cannot be set for one window

Problem:    'showbreak' cannot be set for one window.
Solution:   Make 'showbreak' global-local.

v8.1.2280

Toggle v8.1.2280's commit message
patch 8.1.2280: crash when passing partial to substitute()

Problem:    Crash when passing partial to substitute().
Solution:   Take extra arguments into account. (closes vim#5186)

v8.1.2279

Toggle v8.1.2279's commit message
patch 8.1.2279: computation of highlight attributes is too complicated

Problem:    Computation of highlight attributes is too complicated.
Solution:   Simplify the attribute computation and make it more consistent.
            (closes vim#5190)  Fix that 'combine' set to zero doesn't work.

v8.1.2278

Toggle v8.1.2278's commit message
patch 8.1.2278: using "cd" with "exe" may fail

Problem:    Using "cd" with "exe" may fail.
Solution:   Use chdir() instead.

v8.1.2277

Toggle v8.1.2277's commit message
patch 8.1.2277: terminal window is not updated when info popup changes

Problem:    Terminal window is not updated when info popup changes.
Solution:   Redraw windows when re-using an info popup. (closes vim#5192)