summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-23patch 7.4.1154Bram Moolenaar
Problem: No support for JSON. Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, v:null and v:none.
2016-01-22patch 7.4.1153Bram Moolenaar
Problem: Autocommands triggered by quickfix cannot always get the current title value. Solution: Call qf_fill_buffer() later. (Christian Brabandt)
2016-01-21patch 7.4.1152Bram Moolenaar
Problem: Langmap test fails with normal build. Solution: Check for +langmap feature.
2016-01-21Update runtime filesBram Moolenaar
2016-01-21patch 7.4.1151Bram Moolenaar
Problem: Missing change to eval.c Solution: Also change feedkeys().
2016-01-21patch 7.4.1150Bram Moolenaar
Problem: 'langmap' applies to the first character typed in Select mode. (David Watson) Solution: Check for SELECTMODE. (Christian Brabandt, closes #572) Add the 'x' flag to feedkeys().
2016-01-21patch 7.4.1149Bram Moolenaar
Problem: Using the local value of 'errorformat' causes more problems than it solves. Solution: Revert 7.4.1013.
2016-01-21patch 7.4.1148Bram Moolenaar
Problem: Default for MingW and Cygwin is still "normal". Solution: Use "huge" as default. (Ken Takata)
2016-01-20patch 7.4.1147Bram Moolenaar
Problem: Conflict for "chartab". (Kazunobu Kuriyama) Solution: Rename the global one to something less obvious. Move it into src/chartab.c.
2016-01-20patch 7.4.1146Bram Moolenaar
Problem: Can't build with Python 3 interface using MingW. Solution: Update the Makefile. (Yasuhiro Matsumoto, Ken Takata)
2016-01-20patch 7.4.1145Bram Moolenaar
Problem: Default features are conservative. Solution: Make the default feature set for most of todays systems "huge".
2016-01-20patch 7.4.1144Bram Moolenaar
Problem: Can't build on several systems. Solution: Include float.h. (Christian Robinson, closes #570 #571)
2016-01-19patch 7.4.1143Bram Moolenaar
Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort().
2016-01-19patch 7.4.1142Bram Moolenaar
Problem: Cannot define keyword characters for a syntax file. Solution: Add the ":syn iskeyword" command. (Christian Brabandt)
2016-01-19patch 7.4.1141Bram Moolenaar
Problem: Using searchpair() with a skip expression that uses syntax highlighting sometimes doesn't work. (David Fishburn) Solution: Reset next_match_idx. (Christian Brabandt)
2016-01-19patch 7.4.1140Bram Moolenaar
Problem: Recognizing <sid> does not work when the language is Turkish. (Christian Brabandt) Solution: Use MB_STNICMP() instead of STNICMP().
2016-01-19patch 7.4.1139Bram Moolenaar
Problem: MS-Windows: getftype() returns "file for symlink to directory. Solution: Make it return "dir". (Ken Takata)
2016-01-19patch 7.4.1138Bram Moolenaar
Problem: When running gvim in the foreground some icons are missing. (Taylor Venable) Solution: Move the call to gui_gtk_register_resource(). (Kazunobu Kuriyama)
2016-01-19patch 7.4.1137Bram Moolenaar
Problem: Illegal memory access when using :copen and :cclose. Solution: Avoid that curbuf is invalid. (suggestion by Justin M. Keyes) Add a test.
2016-01-19patch 7.4.1136Bram Moolenaar
Problem: Wrong argument to assert_exception() causes a crash. (reported by Coverity) Solution: Check for NULL pointer. Add a test.
2016-01-19patch 7.4.1135Bram Moolenaar
Problem: One more arglist test fails on MS-Windows. Solution: Don't edit "Y" after editing "y".
2016-01-19patch 7.4.1134Bram Moolenaar
Problem: The arglist test fails on MS-Windows. Solution: Only check for failure of argedit on Unix.
2016-01-19patch 7.4.1133Bram Moolenaar
Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
2016-01-19patch 7.4.1132Bram Moolenaar
Problem: Old style tests for the argument list. Solution: Add more new style tests. (Yegappan Lakshmanan)
2016-01-18patch 7.4.1131Bram Moolenaar
Problem: New lines in the viminfo file are dropped. Solution: Copy lines starting with "|". Fix that when using :rviminfo in a function global variables were restored as function-local variables.
2016-01-18patch 7.4.1130Bram Moolenaar
Problem: Memory leak in :vimgrep. Solution: Call FreeWild(). (Yegappan Lakshmanan)
2016-01-17patch 7.4.1129Bram Moolenaar
Problem: Python None value can't be converted to a Vim value. Solution: Just use zero. (Damien)
2016-01-17Update help files.Bram Moolenaar
2016-01-17patch 7.4.1128Bram Moolenaar
Problem: MS-Windows: delete() does not recognize junctions. Solution: Add mch_isrealdir() for MS-Windows. Update mch_is_symbolic_link(). (Ken Takata)
2016-01-17patch 7.4.1127Bram Moolenaar
Problem: Both old and new style tests for Perl. Solution: Merge the old tests with the new style tests.
2016-01-17patch 7.4.1126Bram Moolenaar
Problem: Can only get the directory of the current window. Solution: Add window and tab arguments to getcwd() and haslocaldir(). (Thinca, Hirohito Higashi)
2016-01-17patch 7.4.1125Bram Moolenaar
Problem: There is no perleval(). Solution: Add perleval(). (Damien)
2016-01-17patch 7.4.1124Bram Moolenaar
Problem: MS-Windows: dead key behavior is not ideal. Solution: Handle dead keys differently when not in Insert or Select mode. (John Wellesz, closes #399)
2016-01-17patch 7.4.1123Bram Moolenaar
Problem: Using ":argadd" when there are no arguments results in the second argument to be the current one. (Yegappan Lakshmanan) Solution: Correct the w_arg_idx value.
2016-01-17patch 7.4.1122Bram Moolenaar
Problem: Test 92 and 93 fail when using gvim on a system with a non utf-8 locale. Solution: Avoid using .gvimrc by adding -U NONE. (Yukihiro Nakadaira)
2016-01-17patch 7.4.1121Bram Moolenaar
Problem: test_expand leaves files behind. Solution: Edit another file before deleting, otherwise the swap file remains.
2016-01-17patch 7.4.1120Bram Moolenaar
Problem: delete(x, 'rf') fails if a directory is empty. (Lcd) Solution: Ignore not finding matches in an empty directory.
2016-01-17patch 7.4.1119Bram Moolenaar
Problem: argidx() has a wrong value after ":%argdelete". (Yegappan Lakshmanan) Solution: Correct the value of w_arg_idx. Add a test.
2016-01-17patch 7.4.1118Bram Moolenaar
Problem: Tests hang in 24 line terminal. Solution: Set the 'more' option off.
2016-01-17patch 7.4.1117Bram Moolenaar
Problem: No longer get "." and ".." in directory list. Solution: Do not skip "." and ".." unless EW_DODOT is set.
2016-01-17patch 7.4.1116Bram Moolenaar
Problem: delete(x, 'rf') does not delete files starting with a dot. Solution: Also delete files starting with a dot.
2016-01-17patch 7.4.1115Bram Moolenaar
Problem: MS-Windows: make clean in testdir doesn't clean everything. Solution: Add command to delete X* directories. (Ken Takata)
2016-01-17patch 7.4.1114Bram Moolenaar
Problem: delete() does not work well with symbolic links. Solution: Recognize symbolik links.
2016-01-17patch 7.4.1113Bram Moolenaar
Problem: Using {ns} in variable name does not work. (lilydjwg) Solution: Fix recognizing colon. Add a test.
2016-01-16patch 7.4.1112Bram Moolenaar
Problem: When using ":next" with an illegal file name no error is reported. Solution: Give an error message.
2016-01-16patch 7.4.1111Bram Moolenaar
Problem: test_expand fails on MS-Windows. Solution: Always use forward slashes. Remove references to test27.
2016-01-16patch 7.4.1110Bram Moolenaar
Problem: Test 108 fails when language is French. Solution: Force English messages. (Dominique Pelle)
2016-01-16patch 7.4.1109Bram Moolenaar
Problem: MS-Windows doesn't have rmdir(). Solution: Add mch_rmdir().
2016-01-16patch 7.4.1108Bram Moolenaar
Problem: Expanding "~" halfway a file name. Solution: Handle the file name as one name. (Marco Hinz) Add a test. Closes #564.
2016-01-16patch 7.4.1107Bram Moolenaar
Problem: Vim can create a directory but not delete it. Solution: Add an argument to delete() to make it possible to delete a directory, also recursively.