summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-04patch 8.0.0124Bram Moolenaar
Problem: Internal error for assert_inrange(1, 1). Solution: Adjust number of allowed arguments. (Dominique Pelle)
2016-12-03patch 8.0.0123Bram Moolenaar
Problem: Modern Sun compilers define "__sun" instead of "sun". Solution: Use __sun. (closes #1296)
2016-12-03patch 8.0.0122Bram Moolenaar
Problem: Channel test is still flaky on OS X. Solution: Add a short sleep.
2016-12-03patch 8.0.0121Bram Moolenaar
Problem: Setting 'cursorline' changes the curswant column. (Daniel Hahler) Solution: Add the P_RWINONLY flag. (closes #1297)
2016-12-03patch 8.0.0120Bram Moolenaar
Problem: Channel test is still flaky on OS X. Solution: Set the drop argument to "never".
2016-12-03patch 8.0.0119Bram Moolenaar
Problem: No test for using CTRL-R on the command line. Solution: Add a test. (Dominique Pelle) And some more.
2016-12-02Add objects dirstamp to gitignore.Bram Moolenaar
2016-12-01patch 8.0.0118Bram Moolenaar
Problem: "make proto" adds extra function prototype. Solution: Add #ifdef.
2016-12-01Updated runtime files.Bram Moolenaar
2016-12-01patch 8.0.0117Bram Moolenaar
Problem: Parallel make fails. (J. Lewis Muir) Solution: Make sure the objects directory exists. (closes #1259)
2016-12-01patch 8.0.0116Bram Moolenaar
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)
2016-12-01patch 8.0.0115Bram Moolenaar
Problem: When building with Cygwin libwinpthread isn't found. Solution: Link winpthread statically. (jmmerz, closes #1255, closes #1256)
2016-12-01patch 8.0.0114Bram Moolenaar
Problem: Coding style not optimal. Solution: Add spaces. (Ken Takata)
2016-12-01patch 8.0.0113Bram Moolenaar
Problem: MS-Windows: message box to prompt for saving changes may appear on the wrong monitor. Solution: Adjust the CenterWindow function. (Ken Takata)
2016-12-01patch 8.0.0112Bram Moolenaar
Problem: Tests 92 and 93 are old style. Solution: Make test92 and test93 new style. (Hirohito Higashi, closes #1289)
2016-12-01patch 8.0.0111Bram Moolenaar
Problem: The :history command is not tested. Solution: Add tests. (Dominique Pelle)
2016-12-01patch 8.0.0110Bram Moolenaar
Problem: Drop command doesn't use existing window. Solution: Check the window width properly. (Hirohito Higashi)
2016-12-01patch 8.0.0109Bram Moolenaar
Problem: Still checking if memcmp() exists while every system should have it now. Solution: Remove vim_memcmp(). (James McCoy, closes #1295)
2016-12-01patch 8.0.0108Bram Moolenaar
Problem: The channel "drop" option is not tested. Solution: Add a test.
2016-12-01patch 8.0.0107Bram Moolenaar
Problem: When reading channel output in a timer, messages may go missing. (Skywind) Solution: Add the "drop" option. Write error messages in the channel log. Don't have ch_canread() check for the channel being open.
2016-11-29patch 8.0.0106Bram Moolenaar
Problem: Cannot use a semicolon in 'backupext'. (Jeff) Solution: Allow for a few more characters when "secure" isn't set.
2016-11-29patch 8.0.0105Bram Moolenaar
Problem: When using ch_read() with zero timeout, can't tell the difference between reading an empty line and nothing available. Solution: Add ch_canread().
2016-11-26patch 8.0.0104Bram Moolenaar
Problem: Value of 'thesaurus' option not checked properly. Solution: Add P_NDNAME flag. (Daisuke Suzuki)
2016-11-26patch 8.0.0103Bram Moolenaar
Problem: May not process channel readahead. (skywind) Solution: If there is readahead don't block on input.
2016-11-25patch 8.0.0102Bram Moolenaar
Problem: Cannot set 'dictionary' to a path. Solution: Allow for slash and backslash. Add a test (partly by Daisuke Suzuki, closes #1279, closes #1284)
2016-11-24patch 8.0.0101Bram Moolenaar
Problem: Some options are not strictly checked. Solution: Add flags for strickter checks.
2016-11-24patch 8.0.0100Bram Moolenaar
Problem: Options that are a file name may contain non-filename characters. Solution: Check for more invalid characters.
2016-11-24patch 8.0.0099Bram Moolenaar
Problem: Popup menu always appears above the cursor when it is in the lower half of the screen. (Matt Gardner) Solution: Compute the available space better. (Hirohito Higashi, closes #1241)
2016-11-24patch 8.0.0098Bram Moolenaar
Problem: Can't build on MS-Windows. Solution: Add missing parenthesis.
2016-11-24patch 8.0.0097Bram Moolenaar
Problem: When a channel callback consumes a lot of time Vim becomes unresponsive. (skywind) Solution: Bail out of checking channel readahead after 100 msec.
2016-11-24patch 8.0.0096Bram Moolenaar
Problem: When the input or output is not a tty Vim appears to hang. Solution: Add the --ttyfail argument. Also add the "ttyin" and "ttyout" features to be able to check in Vim script.
2016-11-21patch 8.0.0095Bram Moolenaar
Problem: Problems with GTK 3.22.2 fixed in 3.22.4. Solution: Adjust the #ifdefs. (Kazunobu Kuriyama)
2016-11-19patch 8.0.0094Bram Moolenaar
Problem: When vimrun.exe is not found the error message is not properly encoded. Solution: Use utf-16 and MessageBoxW(). (Ken Takata)
2016-11-19patch 8.0.0093Bram Moolenaar
Problem: Not using multiprocess build feature. Solution: Enable multiprocess build with MSVC 10. (Ken Takata)
2016-11-17patch 8.0.0092Bram Moolenaar
Problem: C indenting does not support nested namespaces that C++ 17 has. Solution: Add check that passes double colon inside a name. (Pauli, closes #1214)
2016-11-17patch 8.0.0091Bram Moolenaar
Problem: Test_help_complete sometimes fails in MS-Windows console. Solution: Use getcompletion() instead of feedkeys() and command line completion. (Hirohito Higashi)
2016-11-17patch 8.0.0090Bram Moolenaar
Problem: Test_help_complete sometimes fails in MS-Windows console. Solution: Use getcompletion() instead of feedkeys() and command line completion. (Hirohito Higashi)
2016-11-17patch 8.0.0089Bram Moolenaar
Problem: Various problems with GTK 3.22.2. Solution: Fix the problems, add #ifdefs. (Kazunobu Kuriyama)
2016-11-17patch 8.0.0088Bram Moolenaar
Problem: When a test fails in Setup or Teardown the problem is not reported. Solution: Add a try/catch. (Hirohito Higashi)
2016-11-17patch 8.0.0087Bram Moolenaar
Problem: When the channel callback gets job info the job may already have been deleted. (lifepillar) Solution: Do not delete the job when the channel is still useful. (ichizok, closes #1242, closes #1245)
2016-11-17Updated runtime files.Bram Moolenaar
2016-11-15patch 8.0.0086Bram Moolenaar
Problem: Cannot add a comment after ":hide". (Norio Takagi) Solution: Make it work, add a test. (Hirohito Higashi)
2016-11-14patch 8.0.0085Bram Moolenaar
Problem: Using freed memory with recursive function call. (Dominique Pelle) Solution: Make a copy of the function name.
2016-11-13patch 8.0.0084Bram Moolenaar
Problem: Using freed memory when adding to a quickfix list. (Domenique Pelle) Solution: Clear the directory name.
2016-11-13patch 8.0.0083Bram Moolenaar
Problem: Using freed memory with win_getid(). (Domenique Pelle) Solution: For the current tab use curwin.
2016-11-12patch 8.0.0082Bram Moolenaar
Problem: Extension for configure should be ".ac". Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173)
2016-11-12patch 8.0.0081Bram Moolenaar
Problem: Inconsistent function names. Solution: Rename do_cscope to ex_cscope. Clean up comments.
2016-11-12patch 8.0.0080Bram Moolenaar
Problem: The OS X build fails on Travis. Solution: Skip the virtual framebuffer on OS X.
2016-11-12patch 8.0.0079Bram Moolenaar
Problem: Accessing freed memory in quickfix. (Domenique Pelle) Solution: Do not free the current list when adding to it.
2016-11-12patch 8.0.0078Bram Moolenaar
Problem: Accessing freed memory in quickfix. Solution: Reset pointer when freeing 'errorformat'. (Domenique Pelle)