summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2015-07-12patch 7.4.781v7.4.781Bram Moolenaar
Problem: line2byte() returns one less when 'bin' and 'noeol' are set. Solution: Only adjust the size for the last line. (Rob Wu)
2015-07-12patch 7.4.780v7.4.780Bram Moolenaar
Problem: Compiler complains about uninitialized variable and clobbered variables. Solution: Add Initialization. Make variables static.
2015-07-12patch 7.4.779v7.4.779Bram Moolenaar
Problem: Using CTRL-A in a line without a number moves the cursor. May cause a crash when at the start of the line. (Urtica Dioica) Solution: Do not move the cursor if no number was changed.
2015-07-10patch 7.4.778v7.4.778Bram Moolenaar
Problem: Coverity warns for uninitialized variable. Solution: Change condition of assignment.
2015-07-10patch 7.4.777v7.4.777Bram Moolenaar
Problem: The README file doesn't look nice on github. Solution: Add a markdown version of the README file.
2015-07-10patch 7.4.776v7.4.776Bram Moolenaar
Problem: Equivalence class for 'd' does not work correctly. Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle)
2015-07-10Add files missing from patch 7.4.771.Bram Moolenaar
2015-07-10patch 7.4.775v7.4.775Bram Moolenaar
Problem: It is not possible to avoid using the first item of completion. Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo Matsu)
2015-07-10patch 7.4.774v7.4.774Bram Moolenaar
Problem: When using the CompleteDone autocommand event it's difficult to get to the completed items. Solution: Add the v:completed_items variable. (Shougo Matsu)
2015-07-10patch 7.4.773v7.4.773Bram Moolenaar
Problem: 'langmap' is used in command-line mode when checking for mappings. Issue 376. Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez)
2015-07-10patch 7.4.772v7.4.772Bram Moolenaar
Problem: Racket 6.2 is not supported on MS-Windows. Solution: Check for the "racket" subdirectory. (Weiyong Mao)
2015-07-10patch 7.4.771v7.4.771Bram Moolenaar
Problem: Search does not handle multi-byte character at the start position correctly. Solution: Take byte size of character into account. (Yukihiro Nakadaira)
2015-07-10patch 7.4.770v7.4.770Bram Moolenaar
Problem: Background color response with transparency is not ignored. Solution: Change the way escape sequences are recognized. (partly by Hirohito Higashi)
2015-07-04patch 7.4.769v7.4.769Bram Moolenaar
Problem: Behavior of :diffoff is not tested. Solution: Add a bit of testing. (Olaf Dabrunz)
2015-07-03patch 7.4.768v7.4.768Bram Moolenaar
Problem: :diffoff only works properly once. Solution: Also make :diffoff work when used a second time. (Olaf Dabrunz)
2015-07-03patch 7.4.767v7.4.767Bram Moolenaar
Problem: --remote-tab-silent can fail on MS-Windows. Solution: Use single quotes to avoid problems with backslashes. (Idea by Weiyong Mao)
2015-07-03patch 7.4.766v7.4.766Bram Moolenaar
Problem: Background color check does not work on Tera Term. Solution: Also recognize ST as a termination character. (Hirohito Higashi)
2015-07-03patch 7.4.765v7.4.765Bram Moolenaar
Problem: CTRL-A and CTRL-X in Visual mode do not always work well. Solution: Improvements for increment and decrement. (Christian Brabandt)
2015-06-28patch 7.4.764v7.4.764Bram Moolenaar
Problem: test_increment fails on MS-Windows. (Ken Takata) Solution: Clear Visual mappings. (Taro Muraoka)
2015-06-27patch 7.4.763v7.4.763Bram Moolenaar
Problem: Building with Lua 5.1 doesn't work. Solution: Define lua_replace and lua_remove. (KF Leong)
2015-06-27patch 7.4.762v7.4.762Bram Moolenaar
Problem: Comment for may_req_bg_color() is wrong. (Christ van Willegen) Solution: Rewrite the comment.
2015-06-25patch 7.4.761v7.4.761Bram Moolenaar
Problem: The request-background termcode implementation is incomplete. Solution: Add the missing pieces.
2015-06-25patch 7.4.760v7.4.760Bram Moolenaar
Problem: Spelling mistakes are not displayed after ":syn spell". Solution: Force a redraw after ":syn spell" command. (Christian Brabandt)
2015-06-25patch 7.4.759v7.4.759Bram Moolenaar
Problem: Building with Lua 5.3 doesn't work, symbols have changed. Solution: Use the new names for the new version. (Felix Schnizlein)
2015-06-25patch 7.4.758v7.4.758Bram Moolenaar
Problem: When 'conceallevel' is 1 and quitting the command-line window with CTRL-C the first character ':' is erased. Solution: Reset 'conceallevel' in the command-line window. (Hirohito Higashi)
2015-06-25patch 7.4.757v7.4.757Bram Moolenaar
Problem: Cannot detect the background color of a terminal. Solution: Add T_RBG to request the background color if possible. (Lubomir Rintel)
2015-06-25patch 7.4.756v7.4.756Bram Moolenaar
Problem: Can't use strawberry Perl 5.22 x64 on MS-Windows. Solution: Add new defines and #if. (Ken Takata)
2015-06-25patch 7.4.755v7.4.755Bram Moolenaar
Problem: It is not easy to count the number of characters. Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken Takata)
2015-06-25patch 7.4.754v7.4.754Bram Moolenaar
Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson) Solution: Make it increment all numbers in the Visual area. (Christian Brabandt)
2015-06-25patch 7.4.753v7.4.753Bram Moolenaar
Problem: Appending in Visual mode with 'linebreak' set does not work properly. Also when 'selection' is "exclusive". (Ingo Karkat) Solution: Recalculate virtual columns. (Christian Brabandt)
2015-06-21patch 7.4.752v7.4.752Bram Moolenaar
Problem: Unicode 8.0 not supported. Solution: Update tables for Unicode 8.0. Avoid E36 when running the script. (James McCoy)
2015-06-21patch 7.4.751v7.4.751Bram Moolenaar
Problem: It is not obvious how to enable the address sanitizer. Solution: Add commented-out flags in the Makefile. (Dominique Pelle) Also add missing test targets.
2015-06-21patch 7.4.750v7.4.750Bram Moolenaar
Problem: Cannot build with clang 3.5 on Cygwin with perl enabled. Solution: Strip "-fdebug-prefix-map" in configure. (Ken Takata)
2015-06-20patch 7.4.749v7.4.749Bram Moolenaar
Problem: For some options two consecutive commas are OK. (Nikolay Pavlov) Solution: Add the P_ONECOMMA flag.
2015-06-19patch 7.4.748v7.4.748Bram Moolenaar
Problem: Buffer overflow. Solution: Make the buffer larger. (Kazunobu Kuriyama)
2015-06-19patch 7.4.747v7.4.747Bram Moolenaar
Problem: ":cnext" may jump to the wrong column when setting 'virtualedit=all' (cs86661) Solution: Reset the coladd field. (Hirohito Higashi)
2015-06-19patch 7.4.746v7.4.746Bram Moolenaar
Problem: ":[count]tag" is not always working. (cs86661) Solution: Set cur_match a bit later. (Hirohito Higashi)
2015-06-19patch 7.4.745v7.4.745Bram Moolenaar
Problem: The entries added by matchaddpos() are returned by getmatches() but can't be set with setmatches(). (Lcd) Solution: Fix setmatches(). (Christian Brabandt)
2015-06-19patch 7.4.744v7.4.744Bram Moolenaar
Problem: No tests for Ruby and Perl. Solution: Add minimal tests. (Ken Takata)
2015-06-19patch 7.4.743v7.4.743Bram Moolenaar
Problem: "p" in Visual mode causes an unexpected line split. Solution: Advance the cursor first. (Yukihiro Nakadaira)
2015-06-19patch 7.4.742v7.4.742Bram Moolenaar
Problem: Cannot specify a vertical split when loading a buffer for a quickfix command. Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong)
2015-06-19patch 7.4.741v7.4.741Bram Moolenaar
Problem: When using += with ":set" a trailing comma is not recognized. (Issue 365) Solution: Don't add a second comma. Add a test. (partly by Christian Brabandt)
2015-06-19patch 7.4.740v7.4.740Bram Moolenaar
Problem: ":1quit" works like ":.quit". (Bohr Shaw) Solution: Don't exit Vim when a range is specified. (Christian Brabandt)
2015-06-19patch 7.4.739v7.4.739Bram Moolenaar
Problem: In a string "\U" only takes 4 digits, while after CTRL-V U eight digits can be used. Solution: Make "\U" also take eight digits. (Christian Brabandt)
2015-06-10patch 7.4.738v7.4.738Bram Moolenaar
Problem: Can't compile without the syntax highlighting feature. Solution: Add #ifdef around use of w_p_cul. (Hirohito Higashi)
2015-06-09patch 7.4.737v7.4.737Bram Moolenaar
Problem: On MS-Windows vimgrep over arglist doesn't work (Issue 361) Solution: Only escape backslashes in ## expansion when it is not used as the path separator. (James McCoy)
2015-06-09patch 7.4.736v7.4.736Bram Moolenaar
Problem: Invalid memory access. Solution: Avoid going over the end of a NUL terminated string. (Dominique Pelle)
2015-06-09patch 7.4.735v7.4.735Bram Moolenaar
Problem: Wrong argument for sizeof(). Solution: Use a pointer argument. (Chris Hall)
2015-06-09patch 7.4.734v7.4.734Bram Moolenaar
Problem: ml_get error when using "p" in a Visual selection in the last line. Solution: Change the behavior at the last line. (Yukihiro Nakadaira)
2015-06-09patch 7.4.733v7.4.733Bram Moolenaar
Problem: test_listchars breaks on MS-Windows. (Kenichi Ito) Solution: Set fileformat to "unix". (Christian Brabandt)