summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.0154: system() test fails on OS/Xv8.0.0154Bram Moolenaar2017-01-082-1/+11
| | | | | Problem: system() test fails on OS/X. Solution: Deal with leading spaces.
* patch 8.0.0153: system() test fails on MS-Windowsv8.0.0153Bram Moolenaar2017-01-082-4/+26
| | | | | Problem: system() test fails on MS-Windows. Solution: Deal when extra space and CR.
* patch 8.0.0152: stray channellog created when running testsv8.0.0152Bram Moolenaar2017-01-082-1/+2
| | | | | Problem: Running the channel test creates channellog. Solution: Delete the debug line.
* patch 8.0.0151: passing buffer content to system() is clumsyv8.0.0151Bram Moolenaar2017-01-086-5/+60
| | | | | | Problem: To pass buffer content to system() and systemlist() one has to first create a string or list. Solution: Allow passing a buffer number. (LemonBoy, closes #1240)
* patch 8.0.0150: completion for :filter does not skip the patternv8.0.0150Bram Moolenaar2017-01-073-1/+34
| | | | | | Problem: When the pattern of :filter does not have a separator then completion of the command fails. Solution: Skip over the pattern. (Ozaki Kiichi, clodes #1299)
* patch 8.0.0149: :earlier does not work after reading the undo filev8.0.0149Bram Moolenaar2017-01-073-5/+33
| | | | | | | | Problem: ":earlier" and ":later" do not work after startup or reading the undo file. Solution: Use absolute time stamps instead of relative to the Vim start time. (Christian Brabandt, Pavel Juhas, closes #1300, closes #1254)
* patch 8.0.0148: wrong indent in C preprocessor with line continuationv8.0.0148Bram Moolenaar2017-01-074-11/+54
| | | | | | | Problem: When a C preprocessor statement has two line continuations the following line does not have the right indent. (Ken Takata) Solution: Add the indent of the previous continuation line. (Hirohito Higashi)
* patch 8.0.0147: searchpair() fails when 'magic' is offv8.0.0147Bram Moolenaar2017-01-063-4/+21
| | | | | Problem: searchpair() does not work when 'magic' is off. (Chris Paul) Solution: Add \m in the pattern. (Christian Brabandt, closes #1341)
* patch 8.0.0146: termguicolors uses wrong colors on MS-Windows with ConEmuv8.0.0146Bram Moolenaar2017-01-062-2/+8
| | | | | | Problem: When using 'termguicolors' on MS-Windows the RGB definition causes the colors to be wrong. Solution: Undefined RGB and use our own. (Gabriel Barta)
* patch 8.0.0145: running tests on MS-Windows is noisyv8.0.0145Bram Moolenaar2017-01-062-7/+9
| | | | | Problem: Running tests on MS-Windows is a little bit noisy. Solution: Redirect some output to "nul". (Ken Takata)
* Only install coveralls when used.Bram Moolenaar2017-01-061-3/+3
|
* Better solution to make coveralls work again.Bram Moolenaar2017-01-061-1/+2
|
* Tune travis config for coverage with gcc only.Bram Moolenaar2017-01-061-1/+2
|
* Another attempt to make coveralls work.Bram Moolenaar2017-01-061-1/+1
|
* Attempt to make coverage working again.Bram Moolenaar2017-01-061-0/+1
|
* patch 8.0.0144: when using MSVC the GvimExt directory is cleaned twicev8.0.0144Bram Moolenaar2017-01-062-3/+2
| | | | | Problem: When using MSVC the GvimExt directory is cleaned twice. Solution: Remove the lines. (Ken Takata)
* patch 8.0.0143: line number of current buffer in getbufinfo() is wrongv8.0.0143Bram Moolenaar2017-01-062-1/+4
| | | | | Problem: Line number of current buffer in getbufinfo() is wrong. Solution: For the current buffer use the current line number. (Ken Takata)
* patch 8.0.0142v8.0.0142Bram Moolenaar2017-01-022-0/+6
| | | | | | Problem: Normal colors are wrong with 'termguicolors'. Solution: Initialize to INVALCOLOR instead of zero. (Ben Jackson, closes #1344)
* Updated runtime files.Bram Moolenaar2017-01-0216-58/+149
|
* patch 8.0.0141v8.0.0141Bram Moolenaar2017-01-022-0/+6
| | | | | Problem: Nested function test fails on AppVeyor. Solution: Disable the test on Windows for now.
* patch 8.0.0140v8.0.0140Bram Moolenaar2017-01-023-5/+17
| | | | | | | Problem: Pasting inserted text in Visual mode does not work properly. (Matthew Malcomson) Solution: Stop Visual mode before stuffing the inserted text. (Christian Brabandt, from neovim #5709)
* patch 8.0.0139v8.0.0139Bram Moolenaar2017-01-022-2/+4
| | | | | Problem: Warning for unused argument. Solution: Add UNUSED.
* patch 8.0.0138v8.0.0138Bram Moolenaar2017-01-022-1/+7
| | | | | Problem: Small build fails. Solution: Add #ifdef.
* patch 8.0.0137v8.0.0137Bram Moolenaar2017-01-023-2/+26
| | | | | | Problem: When 'maxfuncdepth' is set above 200 the nesting is limited to 200. (Brett Stahlman) Solution: Allow for Ex command recursion depending on 'maxfuncdepth'.
* patch 8.0.0136v8.0.0136Bram Moolenaar2017-01-023-5/+40
| | | | | | Problem: When using indent folding and changing indent the wrong fold is opened. (Jonathan Fudger) Solution: Open the fold under the cursor a bit later. (Christian Brabandt)
* patch 8.0.0135v8.0.0135Bram Moolenaar2017-01-025-8/+89
| | | | | | Problem: An address relative to the current line, ":.,+3y", does not work properly on a closed fold. (Efraim Yawitz) Solution: Correct for including the closed fold. (Christian Brabandt)
* patch 8.0.0134v8.0.0134Bram Moolenaar2016-12-142-1/+4
| | | | | Problem: Null pointer access reported by UBsan. Solution: Check curwin->w_buffer is not NULL. (Yegappan Lakshmanan)
* patch 8.0.0133v8.0.0133Bram Moolenaar2016-12-113-3/+13
| | | | | Problem: "2;'(" causes ml_get errors in an empty buffer. (Dominique Pelle) Solution: Check the cursor line earlier.
* patch 8.0.0132v8.0.0132Bram Moolenaar2016-12-112-1/+3
| | | | | Problem: Test fails because of using :finish. Solution: Change to return.
* patch 8.0.0131v8.0.0131Bram Moolenaar2016-12-112-1/+79
| | | | | Problem: Not enough test coverage for syntax commands. Solution: Add more tests. (Dominique Pelle)
* patch 8.0.0130v8.0.0130Bram Moolenaar2016-12-093-4/+6
| | | | | Problem: Configure uses "ushort" while the Vim code doesn't. Solution: Use "unsigned short" instead. (Fredrik Fornwall, closes #1314)
* patch 8.0.0129v8.0.0129Bram Moolenaar2016-12-092-3/+13
| | | | | Problem: Parallel make still doesn't work. (Lewis Muir) Solution: Define OBJ_MAIN.
* patch 8.0.0128v8.0.0128Bram Moolenaar2016-12-092-0/+4
| | | | | Problem: Display test fails on MS-Windows. Solution: Set 'isprint' to "@".
* patch 8.0.0127v8.0.0127Bram Moolenaar2016-12-093-1/+21
| | | | | | | Problem: Cancelling completion still inserts text when formatting is done for 'textwidth'. (lacygoill) Solution: Don't format when CTRL-E was typed. (Hirohito Higashi, closes #1312)
* patch 8.0.0126v8.0.0126Bram Moolenaar2016-12-095-7/+54
| | | | | | | Problem: Display problem with 'foldcolumn' and a wide character. (esiegerman) Solution: Don't use "extra" but an allocated buffer. (Christian Brabandt, closes #1310)
* patch 8.0.0125v8.0.0125Bram Moolenaar2016-12-092-0/+19
| | | | | Problem: Not enough testing for entering Ex commands. Solution: Add test for CTRL-\ e {expr}. (Dominique Pelle)
* patch 8.0.0124v8.0.0124Bram Moolenaar2016-12-043-1/+5
| | | | | Problem: Internal error for assert_inrange(1, 1). Solution: Adjust number of allowed arguments. (Dominique Pelle)
* patch 8.0.0123v8.0.0123Bram Moolenaar2016-12-035-9/+16
| | | | | Problem: Modern Sun compilers define "__sun" instead of "sun". Solution: Use __sun. (closes #1296)
* patch 8.0.0122v8.0.0122Bram Moolenaar2016-12-032-0/+5
| | | | | Problem: Channel test is still flaky on OS X. Solution: Add a short sleep.
* patch 8.0.0121v8.0.0121Bram Moolenaar2016-12-033-3/+23
| | | | | Problem: Setting 'cursorline' changes the curswant column. (Daniel Hahler) Solution: Add the P_RWINONLY flag. (closes #1297)
* patch 8.0.0120v8.0.0120Bram Moolenaar2016-12-032-0/+5
| | | | | Problem: Channel test is still flaky on OS X. Solution: Set the drop argument to "never".
* patch 8.0.0119v8.0.0119Bram Moolenaar2016-12-032-0/+25
| | | | | Problem: No test for using CTRL-R on the command line. Solution: Add a test. (Dominique Pelle) And some more.
* Add objects dirstamp to gitignore.Bram Moolenaar2016-12-021-0/+1
|
* patch 8.0.0118v8.0.0118Bram Moolenaar2016-12-0115-62/+86
| | | | | Problem: "make proto" adds extra function prototype. Solution: Add #ifdef.
* Updated runtime files.Bram Moolenaar2016-12-011-0/+26
|
* patch 8.0.0117v8.0.0117Bram Moolenaar2016-12-012-5/+22
| | | | | Problem: Parallel make fails. (J. Lewis Muir) Solution: Make sure the objects directory exists. (closes #1259)
* patch 8.0.0116v8.0.0116Bram Moolenaar2016-12-013-9/+58
| | | | | | | Problem: When reading English help and using CTRl-] the language from 'helplang' is used. Solution: Make help tag jumps keep the language. (Tatsuki, test by Hirohito Higashi, closes #1249)
* patch 8.0.0115v8.0.0115Bram Moolenaar2016-12-012-0/+13
| | | | | Problem: When building with Cygwin libwinpthread isn't found. Solution: Link winpthread statically. (jmmerz, closes #1255, closes #1256)
* patch 8.0.0114v8.0.0114Bram Moolenaar2016-12-013-7/+11
| | | | | Problem: Coding style not optimal. Solution: Add spaces. (Ken Takata)
* patch 8.0.0113v8.0.0113Bram Moolenaar2016-12-012-22/+36
| | | | | | Problem: MS-Windows: message box to prompt for saving changes may appear on the wrong monitor. Solution: Adjust the CenterWindow function. (Ken Takata)