Skip to content

Tags: vtpp/vim

Tags

v7-4-110

Toggle v7-4-110's commit message
updated for version 7.4.110

Problem:    "gUgn" cannot be repeeated. (Dimitar Dimitrov)
Solution:   Don't put "gn" in a different order in the redo buffer.  Restore
	    'wrapscan' when the pattern isn't found. (Christian Wellenbrock)

v7-4-109

Toggle v7-4-109's commit message
updated for version 7.4.109

Problem:    ColorScheme autocommand matches with the current buffer name.
Solution:   Match with the colorscheme name. (Christian Brabandt)

v7-4-108

Toggle v7-4-108's commit message
updated for version 7.4.108

Problem:    "zG" and "zW" leave temp files around on MS-Windows.
Solution:   Delete the temp files when exiting. (Ken Takata)

v7-4-107

Toggle v7-4-107's commit message
updated for version 7.4.107

Problem:    Python: When vim.eval() encounters a Vim error, a try/catch in the
	    Python code doesn't catch it. (Yggdroot Chen)
Solution:   Throw exceptions on errors in vim.eval(). (ZyX)

v7-4-106

Toggle v7-4-106's commit message
updated for version 7.4.106

Problem:    Can't build with Ruby using Cygwin.
Solution:   Fix library name in makefile. (Steve Hall)

v7-4-105

Toggle v7-4-105's commit message
updated for version 7.4.105

Problem:    Completing a tag pattern may give an error for invalid pattern.
Solution:   Suppress the error, just return no matches.

v7-4-104

Toggle v7-4-104's commit message
updated for version 7.4.104

Problem:    ":help s/\_" reports an internal error. (John Beckett)
Solution:   Check for NUL and invalid character classes.

v7-4-103

Toggle v7-4-103's commit message
updated for version 7.4.103

Problem:    Dos installer uses an old way to escape spaces in the diff
	    command.
Solution:   Adjust the quoting to the new default shellxquote. (Ben Fritz)

v7-4-102

Toggle v7-4-102's commit message
updated for version 7.4.102

Problem:    Crash when interrupting "z=".
Solution:   Add safety check for word length. (Christian Brabandt, Dominique
	    Pelle)

v7-4-101

Toggle v7-4-101's commit message
updated for version 7.4.101

Problem:    Using \1 in pattern goes one line too far. (Bohr Shaw, John Little)
Solution:   Only advance the match end for the matched characters in the last
	    line.