Skip to content

Tags: n3npq/vim

Tags

v7-4-658

updated for version 7.4.658

Problem:    'formatexpr' is evaluated too often.
Solution:   Only invoke it when beyond the 'textwidth' column, as it is
	    documented. (James McCoy)

v7-4-657

updated for version 7.4.657

Problem:    Compiler warnings for pointer mismatch.
Solution:   Add a typecast. (John Marriott)

v7-4-656

updated for version 7.4.656

Problem:    Missing changes for glob() in one file.
Solution:   Add the missing changes.

v7-4-655

updated for version 7.4.655

Problem:    Text deleted by "dit" depends on indent of closing tag.
	    (Jan Parthey)
Solution:   Do not adjust oap->end in do_pending_operator(). (Christian
	    Brabandt)

v7-4-654

updated for version 7.4.654

Problem:    glob() and globpath() cannot include links to non-existing files.
	    (Charles Campbell)
Solution:   Add an argument to include all links with glob(). (James McCoy)
	    Also for globpath().

v7-4-653

updated for version 7.4.653

Problem:    Insert mode completion with complete() may have CTRL-L work like
	    CTRL-P.
Solution:   Handle completion with complete() differently. (Yasuhiro
	    Matsumoto, Christian Brabandt, Hirohito Higashi)

v7-4-652

updated for version 7.4.652

Problem:    Xxd lacks a few features.
Solution:   Use 8 characters for the file position.  Add the -e and -o
	    arguments. (Vadim Vygonets)

v7-4-651

updated for version 7.4.651

Problem:    Can't match "%>80v" properly for multi-byte characters.
Solution:   Multiply the character number by the maximum number of bytes in a
	    character. (Yasuhiro Matsumoto)

v7-4-650

updated for version 7.4.650

Problem:    Configure check may fail because the dl library is not used.
Solution:   Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)

v7-4-649

updated for version 7.4.649

Problem:    Compiler complains about ignoring return value of fwrite().
	    (Michael Jarvis)
Solution:   Add (void).