Skip to content

Tags: jankroken/vim

Tags

v7.4.1721

Toggle v7.4.1721's commit message
patch 7.4.1721

Problem:    The vimtbar files are unused.
Solution:   Remove them. (Ken Takata)

v7.4.1720

Toggle v7.4.1720's commit message
patch 7.4.1720

Problem:    Tests fail without the job feature.
Solution:   Skip tests when the job feature is not present.

v7.4.1719

Toggle v7.4.1719's commit message
patch 7.4.1719

Problem:    Leaking memory when there is a cycle involving a job and a
            partial.
Solution:   Add a copyID to job and channel.  Set references in items referred
            by them.  Go through all jobs and channels to find unreferenced
            items.  Also, decrement reference counts when garbage collecting.

v7.4.1718

Toggle v7.4.1718's commit message
patch 7.4.1718

Problem:    Coverity: not using return value of set_ref_in_item().
Solution:   Use the return value.

v7.4.1717

Toggle v7.4.1717's commit message
patch 7.4.1717

Problem:    Leaking memory when opening a channel fails.
Solution:   Unreference partials in job options.

v7.4.1716

Toggle v7.4.1716's commit message
patch 7.4.1716

Problem:    'autochdir' doesn't work for the first file. (Rob Hoelz)
Solution:   Call DO_AUTOCHDIR after startup. (Christian Brabandt, closes vim#704)

v7.4.1715

Toggle v7.4.1715's commit message
patch 7.4.1715

Problem:    Double free when a partial is in a cycle with a list or dict.
            (Nikolai Pavlov)
Solution:   Do not free a nested list or dict used by the partial.

v7.4.1714

Toggle v7.4.1714's commit message
patch 7.4.1714

Problem:    Non-GUI specific settings in the gvimrc_example file.
Solution:   Move some settings to the vimrc_example file.  Remove setting
            'hlsearch' again. (suggested by Hirohito Higashi)

v7.4.1713

Toggle v7.4.1713's commit message
patch 7.4.1713

Problem:    GTK GUI doesn't work on Wayland.
Solution:   Specify that only the X11 backend is allowed. (Simon McVittie)

v7.4.1712

Toggle v7.4.1712's commit message
patch 7.4.1712

Problem:    For plugins in packages, plugin authors need to take care of all
            dependencies.
Solution:   When loading "start" packages and for :packloadall, first add all
            directories to 'runtimepath' before sourcing plugins.