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

Skip to content

Tags: RajKamal2013/CloneVim

Tags

v7.4.2031

Toggle v7.4.2031's commit message
patch 7.4.2031

Problem:    The list_lbr_utf8 test fails if ~/.vim/syntax/c.vim sets
            'textwidth' to a non-zero value. (Oyvind A. Holm)
Solution:   Add a setup.vim file that sets 'runtimepath' and $HOME to a safe
            value. (partly by Christian Brabandt, closes vim#912)

v7.4.2030

Toggle v7.4.2030's commit message
patch 7.4.2030

Problem:    ARCH must be set properly when using MinGW.
Solution:   Detect the default value of ARCH from the current compiler. (Ken
            Takata)

v7.4.2029

Toggle v7.4.2029's commit message
patch 7.4.2029

Problem:    printf() does not work with 64 bit numbers.
Solution:   use the "L" length modifier. (Ken Takata)

v7.4.2028

Toggle v7.4.2028's commit message
patch 7.4.2028

Problem:    cppcheck warns for using index before limits check.
Solution:   Swap the expressions. (Dominique Pelle)

v7.4.2027

Toggle v7.4.2027's commit message
patch 7.4.2027

Problem:    Can't build with +eval but without +menu.
Solution:   Add #ifdef. (John Marriott)

v7.4.2026

Toggle v7.4.2026's commit message
patch 7.4.2026

Problem:    Reference counting for callbacks isn't right.
Solution:   Add free_callback(). (Ken Takata)  Fix reference count.

v7.4.2025

Toggle v7.4.2025's commit message
patch 7.4.2025

Problem:    The cursor blinking stops or is irregular when receiving date over
            a channel and writing it in a buffer, and when updating the status
            line. (Ramel Eshed)
Solution:   Make it a bit better by flushing GUI output.  Don't redraw the
            cursor after updating the screen if the blink state is off.

v7.4.2024

Toggle v7.4.2024's commit message
patch 7.4.2024

Problem:    More buf_valid() calls can be optimized.
Solution:   Use bufref_valid() instead.

v7.4.2023

Toggle v7.4.2023's commit message
patch 7.4.2023

Problem:    buflist_findname_stat() may find a dummy buffer.
Solution:   Set the BF_DUMMY flag after loading a dummy buffer.  Start
            finding buffers from the end of the list.

v7.4.2022

Toggle v7.4.2022's commit message
patch 7.4.2022

Problem:    Warnings from 64 bit compiler.
Solution:   Add type casts. (Mike Williams)