summaryrefslogtreecommitdiff
path: root/src/message.c
AgeCommit message (Collapse)Author
2013-04-24updated for version 7.3.912Bram Moolenaar
Problem: Typing a ":" command at the hit-enter dialog does not work if the "file changed" dialog happens next. Solution: Check for changed files before giving the hit-enter dialog.
2013-03-19updated for version 7.3.868Bram Moolenaar
Problem: When at the hit-return prompt and using "k" while no text has scrolled off screen, then using "j", an empty line is displayed. Solution: Only act on "k" when text scrolled off screen. Also accept page-up and page-down. (cptstubing)
2012-11-14updated for version 7.3.713Bram Moolenaar
Problem: printf() can only align to bytes, not characters. Solution: Add the "S" item. (Christian Brabandt)
2012-03-28updated for version 7.3.483Bram Moolenaar
Problem: More prompt shows up too often. Solution: Instead of adding a line break, only start a new line in the message history. (Christian Brabandt)
2012-01-26updated for version 7.3.413Bram Moolenaar
Problem: Build warnings on MS-Windows. Solution: Add type casts. (Mike Williams)
2012-01-23updated for version 7.3.410Bram Moolenaar
Problem: Compiler error for // comment. (Joachim Schmitz) Solution: Turn into /* comment */.
2012-01-20updated for version 7.3.407Bram Moolenaar
Problem: ":12verbose call F()" may duplicate text while trying to truncate. (Thinca) Solution: Only truncate when there is not enough room. Also check the byte length of the buffer.
2012-01-10updated for version 7.3.400Bram Moolenaar
Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
2011-12-30updated for version 7.3.389Bram Moolenaar
Problem: After typing at a prompt the "MORE" message appears too soon. Solution: reset lines_left in msg_end_prompt(). (Eswald)
2011-09-14updated for version 7.3.308Bram Moolenaar
Problem: Writing to 'verbosefile' has problems, e.g. for :highlight. Solution: Do not use a separate verbose_write() function but write with the same code that does redirecting. (Yasuhiro Matsumoto)
2011-08-17updated for version 7.3.284Bram Moolenaar
Problem: The str2special() function doesn't handle multi-byte characters properly. Solution: Recognize multi-byte characters. (partly by Vladimir Vichniakov)
2011-03-22updated for version 7.3.139Bram Moolenaar
Problem: When 'lazyredraw' is set ":ver" output can't be read. Solution: Don't redraw the screen when at a prompt or command line.
2011-02-01updated for version 7.3.110Bram Moolenaar
Problem: The "nbsp" item in 'listchars' isn't used for ":list". Solution: Make it work. (Christian Brabandt)
2011-01-17updated for version 7.3.102Bram Moolenaar
Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command.
2011-01-04updated for version 7.3.098Bram Moolenaar
Problem: Function that ignores error still causes called_emsg to be set. E.g. when expand() fails the status line is disabled. Solution: Move check for emsg_not_now() up. (James Vega)
2010-10-20updated for version 7.3.032Bram Moolenaar
Problem: maparg() doesn't return the flags, such as <buffer>, <script>, <silent>. These are needed to save and restore a mapping. Solution: Improve maparg(). (also by Christian Brabandt)
2010-08-04After entering a crypt key would need to hit return to continue.Bram Moolenaar
When silencing a message it would still clear a kept message.
2010-07-25Add support for horizontal scroll wheel. (Bjorn Winckler)Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-06-27Add file save counter to undo information. Add undotree() function.Bram Moolenaar
2010-06-26Change remaining HAVE_GTK2 to FEAT_GUI_GTK.Bram Moolenaar
2009-07-01updated for version 7.2-221Bram Moolenaar
2009-05-17updated for version 7.2-180Bram Moolenaar
2009-04-22updated for version 7.2-152Bram Moolenaar
2009-02-24updated for version 7.2-127Bram Moolenaar
2009-02-21updated for version 7.2-118Bram Moolenaar
2009-02-11updated for version 7.2-107Bram Moolenaar
2009-01-13updated for version 7.2-081Bram Moolenaar
2008-11-28updated for version 7.2-055Bram Moolenaar
2008-07-13updated for version 7.2b-000Bram Moolenaar
2008-07-06updated for version 7.2a-015Bram Moolenaar
2008-06-29updated for version 7.2a-010Bram Moolenaar
2008-06-28updated for version 7.2a-008Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2007-11-24updated for version 7.1-160Bram Moolenaar
2007-09-13updated for version 7.1-106Bram Moolenaar
2007-09-06updated for version 7.1-096Bram Moolenaar
2007-08-07updated for version 7.1-056Bram Moolenaar
2007-08-05updated for version 7.1-053Bram Moolenaar
2007-07-05updated for version 7.1-020Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2007-01-16updated for version 7.0-185Bram Moolenaar
2006-10-14updated for version 7.0-133Bram Moolenaar
2006-10-03updated for version 7.0-118Bram Moolenaar
2006-09-03updated for version 7.0-083Bram Moolenaar
2006-05-13updated for version 7.0-007Bram Moolenaar
2006-05-06updated for version 7.0g05Bram Moolenaar
2006-04-30updated for version 7.0gBram Moolenaar
2006-04-29updated for version 7.0f05Bram Moolenaar
2006-04-22updated for version 7.0e06Bram Moolenaar