Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: nuuyoo/vim

Tags

v7.4.898

Toggle v7.4.898's commit message
patch 7.4.898

Problem:    The 'fixendofline' option is set on with ":edit".
Solution:   Don't set the option when clearing a buffer. (Yasuhiro Matsumoto)

v7.4.897

Toggle v7.4.897's commit message
patch 7.4.897

Problem:    Freeze and crash when there is a sleep in a remote command.
            (Karl Yngve Lervåg)
Solution:   Remove a message from the queue before dealing with it. (James
            Kolb)

v7.4.896

Toggle v7.4.896's commit message
patch 7.4.896

Problem:    Editing a URL, which netrw should handle, doesn't work.
Solution:   Avoid changing slashes to backslashes. (Yasuhiro Matsumoto)

v7.4.895

Toggle v7.4.895's commit message
patch 7.4.895

Problem:    Custom command line completion does not work for a command
            containing digits.
Solution:   Skip over the digits. (suggested by Yasuhiro Matsumoto)

v7.4.894

Toggle v7.4.894's commit message
patch 7.4.894

Problem:    vimrun.exe is picky about the number of spaces before -s.
Solution:   Skip all spaces. (Cam Sinclair)

v7.4.893

Toggle v7.4.893's commit message
patch 7.4.893

Problem:    C indenting is wrong below a "case (foo):" because it is
            recognized as a C++ base class construct.  Issue vim#38.
Solution:   Check for the case keyword.

v7.4.892

Toggle v7.4.892's commit message
patch 7.4.892

Problem:    On MS-Windows the iconv DLL may have a different name.
Solution:   Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto)

v7.4.891

Toggle v7.4.891's commit message
patch 7.4.891

Problem:    Indentation of array initializer is wrong.
Solution:   Avoid that calling find_start_rawstring() changes the position
            returned by find_start_comment(), add a test. (Hirohito Higashi)

v7.4.890

Toggle v7.4.890's commit message
patch 7.4.890

Problem:    Build failure when using dynamic python but not python3.
Solution:   Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX.

v7.4.889

Toggle v7.4.889's commit message
patch 7.4.889

Problem:    Triggering OptionSet from setwinvar() isn't tested.
Solution:   Add a test. (Christian Brabandt)