summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.0460: can't build on HPUXv8.0.0460Bram Moolenaar2017-03-162-2/+4
| | | | | Problem: Can't build on HPUX. Solution: Fix argument names in vim_stat(). (John Marriott)
* patch 8.0.0459: old fix for :move and folding no longer neededv8.0.0459Bram Moolenaar2017-03-152-14/+2
| | | | | | Problem: Old fix for :move messing up folding no longer needed, now that we have a proper solution. Solution: Revert patch 7.4.700. (Christian Brabandt)
* patch 8.0.0458: potential crash if adding list or dict to dict failsv8.0.0458Bram Moolenaar2017-03-142-2/+4
| | | | | | Problem: Potential crash if adding list or dict to dict fails. Solution: Make sure the reference count is correct. (Nikolai Pavlov, closes #1555)
* patch 8.0.0457: using :move messes up manual foldsv8.0.0457Bram Moolenaar2017-03-147-10/+355
| | | | | | Problem: Using :move messes up manual folds. Solution: Split adjusting marks and folds. Add foldMoveRange(). (neovim patch #6221)
* patch 8.0.0456: typo in MinGW test makefilev8.0.0456Bram Moolenaar2017-03-132-1/+3
| | | | | Problem: Typo in MinGW test makefile. Solution: Change an underscore to a dot. (Michael Soyka)
* Fix duplication of patch.Bram Moolenaar2017-03-132-24/+0
|
* patch 8.0.0455: the mode test may hangv8.0.0455Bram Moolenaar2017-03-132-2/+8
| | | | | | Problem: The mode test may hang in Test_mode(). (Michael Soyka) Solution: Set 'complete' to only search the current buffer (as suggested by Michael)
* patch 8.0.0454: compiler warnings for "always true" comparisonv8.0.0454Bram Moolenaar2017-03-123-3/+5
| | | | | | Problem: Compiler warnings for comparing unsigned char with 256 always being true. (Manuel Ortega) Solution: Add type cast.
* patch 8.0.0453: adding fold marker creates new commentv8.0.0453Bram Moolenaar2017-03-125-5/+27
| | | | | Problem: Adding fold marker creates new comment. Solution: Use an existing comment if possible. (LemonBoy, closes #1549)
* patch 8.0.0452: some macros are in lower casev8.0.0452Bram Moolenaar2017-03-1239-214/+213
| | | | | Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
* patch 8.0.0451: some macros are in lower casev8.0.0451Bram Moolenaar2017-03-1239-194/+207
| | | | | | Problem: Some macros are in lower case. Solution: Make a few more macros upper case. Avoid lower case macros use an argument twice.
* patch 8.0.0450: v:progpath is not reliably setv8.0.0450Bram Moolenaar2017-03-123-2/+18
| | | | | | Problem: v:progpath is not reliably set. Solution: Read /proc/self/exe if possible. (idea by Michal Grochmal) Also fixes missing #if.
* patch 8.0.0449: part of fold patch accidentally includedv8.0.0449Bram Moolenaar2017-03-122-23/+8
| | | | | Problem: Part of fold patch accidentally included. Solution: Revert that part of the patch.
* patch 8.0.0448: some macros are in lower casev8.0.0448Bram Moolenaar2017-03-1230-166/+194
| | | | | Problem: Some macros are in lower case, which can be confusing. Solution: Make a few lower case macros upper case.
* patch 8.0.0447: getting font name does not work on X11v8.0.0447Bram Moolenaar2017-03-1211-19/+274
| | | | | | Problem: Getting font name does not work on X11. Solution: Implement gui_mch_get_fontname() for X11. Add more GUI tests. (Kazunobu Kuriyama)
* patch 8.0.0446: the ";" command does not work after some charactersv8.0.0446Bram Moolenaar2017-03-125-1/+55
| | | | | | | Problem: The ";" command does not work after characters with a lower byte that is NUL. Solution: Properly check for not having a previous character. (Hirohito Higashi)
* patch 8.0.0445: getpgid is not supported on all systemsv8.0.0445Bram Moolenaar2017-03-115-5/+10
| | | | | Problem: Getpgid is not supported on all systems. Solution: Add a configure check.
* patch 8.0.0444: diffpatch fails when the file name has a quotev8.0.0444Bram Moolenaar2017-03-113-15/+13
| | | | | Problem: Diffpatch fails when the file name has a quote. Solution: Escape the name properly. (zetzei)
* patch 8.0.0443: terminal width is set to 80 in test3v8.0.0443Bram Moolenaar2017-03-112-1/+4
| | | | | | Problem: Terminal width is set to 80 in test3. Solution: Instead of setting 'columns' set 'wrapmargin' depending on 'columns.
* patch 8.0.0442: patch shell command not well escapedv8.0.0442Bram Moolenaar2017-03-093-4/+22
| | | | | | Problem: Patch shell command uses double quotes around the argument, which allows for $HOME to be expanded. (Etienne) Solution: Use single quotes on Unix. (closes #1543)
* patch 8.0.0441: dead code in #ifdefv8.0.0441Bram Moolenaar2017-03-092-9/+2
| | | | | Problem: Dead code in #ifdef. Solution: Remove the #ifdef and #else part.
* patch 8.0.0440: not enough test coverage in Insert modev8.0.0440Bram Moolenaar2017-03-0913-15/+1386
| | | | | | Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
* patch 8.0.0439: ":%argdel" gives an error for an empty arglistv8.0.0439Bram Moolenaar2017-03-093-1/+14
| | | | | | Problem: Using ":%argdel" while the argument list is already empty gives an error. (Pavol Juhas) Solution: Don't give an error. (closes #1546)
* patch 8.0.0438: the fnamemodify test may cause later tests to failv8.0.0438Bram Moolenaar2017-03-092-1/+7
| | | | | | Problem: The fnamemodify test changes 'shell' in a way later tests may not be able to use system(). Solution: Save and restore 'shell'.
* patch 8.0.0437: packadd test does not fully workv8.0.0437Bram Moolenaar2017-03-092-2/+5
| | | | | | Problem: The packadd test does not create the symlink correctly and does not test the right thing. Solution: Create the directory and symlink correctly.
* patch 8.0.0436: running the options test sometimes resizes the terminalv8.0.0436Bram Moolenaar2017-03-092-0/+5
| | | | | Problem: Running the options test sometimes resizes the terminal. Solution: Clear out t_WS.
* patch 8.0.0435: some functions are not testedv8.0.0435Bram Moolenaar2017-03-092-0/+250
| | | | | Problem: Some functions are not tested. Solution: Add more tests for functions. (Dominique Pelle, closes #1541)
* patch 8.0.0434: clang version not correctly detectedv8.0.0434Bram Moolenaar2017-03-093-11/+44
| | | | | Problem: Clang version not correctly detected. Solution: Adjust the configure script. (Kazunobu Kuriyama)
* patch 8.0.0433: beeps when running testsv8.0.0433Bram Moolenaar2017-03-0827-2/+31
| | | | | Problem: Quite a few beeps when running tests. Solution: Set 'belloff' for these tests. (Christian Brabandt)
* patch 8.0.0432: "make shadow" creates an invalid linkv8.0.0432Bram Moolenaar2017-03-082-1/+3
| | | | | Problem: "make shadow" creates an invalid link. Solution: Don't link "*.vim". (Kazunobu Kuriyama)
* patch 8.0.0431: 'cinoptions' cannot set indent for extern blockv8.0.0431Bram Moolenaar2017-03-085-3/+145
| | | | | Problem: 'cinoptions' cannot set indent for extern block. Solution: Add the "E" flag in 'cinoptions'. (Hirohito Higashi)
* patch 8.0.0430: options test fails or hangs on MS-Windowsv8.0.0430Bram Moolenaar2017-03-087-8/+15
| | | | | | Problem: Options test fails or hangs on MS-Windows. Solution: Run it separately instead of part of test_alot. Use "-S" instead of "-u" to run the script. Fix failures.
* patch 8.0.0429: options test does not always test everythingv8.0.0429Bram Moolenaar2017-03-077-8/+10
| | | | | | Problem: Options test does not always test everything. Solution: Fix dependency for opt_test.vim. Give a message when opt_test.vim was not found.
* patch 8.0.0428: git and hg see new files after running testsv8.0.0428Bram Moolenaar2017-03-079-6/+25
| | | | | | | Problem: Git and hg see new files after running tests. (Manuel Ortega) Solution: Add the generated file to .hgignore (or .gitignore). Delete the resulting verbose file. (Christian Brabandt) Improve dependency on opt_test.vim. Reset the 'more' option.
* patch 8.0.0427: 'makeencoding' missing from the options windowv8.0.0427Bram Moolenaar2017-03-062-1/+6
| | | | | Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
* patch 8.0.0426: insufficient testing for statuslinev8.0.0426Bram Moolenaar2017-03-062-8/+245
| | | | | Problem: Insufficient testing for statusline. Solution: Add several tests. (Dominique Pelle, closes #1534)
* patch 8.0.0425: build errors when building without foldingv8.0.0425Bram Moolenaar2017-03-055-7/+15
| | | | | Problem: Build errors when building without folding. Solution: Add #ifdefs. (John Marriott)
* patch 8.0.0424: compiler warnings on MS-Windowsv8.0.0424Bram Moolenaar2017-03-052-2/+4
| | | | | Problem: Compiler warnings on MS-Windows. (Ajit Thakkar) Solution: Add type casts.
* patch 8.0.0423: changing 'cinoptions' does not always workv8.0.0423Bram Moolenaar2017-03-056-1/+25
| | | | | | Problem: The effect of adding "#" to 'cinoptions' is not always removed. (David Briscoe) Solution: Reset b_ind_hash_comment. (Christian Brabandt, closes #1475)
* patch 8.0.0422: Python test fails with Python 3.6v8.0.0422Bram Moolenaar2017-03-052-1/+16
| | | | | Problem: Python test fails with Python 3.6. Solution: Convert new exception messages to old ones. (closes #1359)
* patch 8.0.0421: diff mode wrong when adding line at end of bufferv8.0.0421Bram Moolenaar2017-03-054-7/+41
| | | | | | Problem: Diff mode is displayed wrong when adding a line at the end of a buffer. Solution: Adjust marks in diff mode. (James McCoy, closes #1329)
* patch 8.0.0420: text garbled when the system encoding differs from 'encoding'v8.0.0420Bram Moolenaar2017-03-0516-16/+328
| | | | | | Problem: When running :make the output may be in the system encoding, different from 'encoding'. Solution: Add the 'makeencoding' option. (Ken Takata)
* Runtime file updates.Bram Moolenaar2017-03-05190-895/+1089
|
* patch 8.0.0419: test for v:progpath fails on MS-Windowsv8.0.0419Bram Moolenaar2017-03-053-15/+21
| | | | | | Problem: Test for v:progpath fails on MS-Windows. Solution: Expand to full path. Also add ".exe" when the path is an absolute path.
* patch 8.0.0418: ASAN logs are disabledv8.0.0418Bram Moolenaar2017-03-052-6/+11
| | | | | | Problem: ASAN logs are disabled and don't cause a failure. Solution: Enable ASAN logs and fail if not empty. (James McCoy, closes #1425)
* patch 8.0.0417: test for the clipboard fails sometimesv8.0.0417Bram Moolenaar2017-03-052-0/+3
| | | | | Problem: Test for the clipboard fails sometimes. Solution: Add it to the flaky tests.
* patch 8.0.0416: setting v:progpath is not quite rightv8.0.0416Bram Moolenaar2017-03-054-20/+42
| | | | | | Problem: Setting v:progpath is not quite right. Solution: On MS-Windows add the extension. On Unix use the full path for a relative directory. (partly by James McCoy, closes #1531)
* patch 8.0.0415: balloon test fails on MS-Windowsv8.0.0415Bram Moolenaar2017-03-052-3/+5
| | | | | Problem: Balloon test fails on MS-Windows. Solution: Test with 0x7fffffff instead of 0xffffffff.
* patch 8.0.0414: balloon eval is not testedv8.0.0414Bram Moolenaar2017-03-052-0/+133
| | | | | Problem: Balloon eval is not tested. Solution: Add a few balloon tests. (Kazunobu Kuriyama)
* patch 8.0.0413: menu test fails on MS-Windows using gvimv8.0.0413Bram Moolenaar2017-03-042-0/+5
| | | | | Problem: Menu test fails on MS-Windows using gvim. Solution: First delete the English menus.