summaryrefslogtreecommitdiff
path: root/src/version.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.1316: duplicated localtime() callv8.1.1316Bram Moolenaar2019-05-111-0/+2
| | | | | Problem: Duplicated localtime() call. Solution: Delete one.
* patch 8.1.1315: there is always a delay if a termrequest is never answeredv8.1.1315Bram Moolenaar2019-05-101-0/+2
| | | | | | Problem: There is always a delay if a termrequest is never answered. Solution: When the response is not received within two seconds consider the request to have failed.
* patch 8.1.1314: MSVC makefile is not nicely indentedv8.1.1314Bram Moolenaar2019-05-101-0/+2
| | | | | Problem: MSVC makefile is not nicely indented. Solution: Addjust spaces in preprocessor directives. (Ken Takata)
* patch 8.1.1313: warnings for using localtime() and ctime()v8.1.1313Bram Moolenaar2019-05-101-0/+2
| | | | | Problem: Warnings for using localtime() and ctime(). Solution: Use localtime_r() if available. Avoid using ctime().
* patch 8.1.1312: Coverity warning for using uninitialized variablev8.1.1312Bram Moolenaar2019-05-091-0/+2
| | | | | Problem: Coverity warning for using uninitialized variable. Solution: Clear exarg_T.
* patch 8.1.1311: aborting an autocmd with an exception is not testedv8.1.1311Bram Moolenaar2019-05-091-0/+2
| | | | | | Problem: Aborting an autocmd with an exception is not tested. Solution: Add a test. Also shows how to abort a command by throwing an exception.
* patch 8.1.1310: named function arguments are never optionalv8.1.1310Bram Moolenaar2019-05-091-0/+2
| | | | | | Problem: Named function arguments are never optional. Solution: Support optional function arguments with a default value. (Andy Massimino, closes #3952)
* patch 8.1.1309: test for Normal highlight fails on MS-Windows GUIv8.1.1309Bram Moolenaar2019-05-091-0/+2
| | | | | Problem: Test for Normal highlight fails on MS-Windows GUI. Solution: Skip the test for MS-Windows GUI.
* patch 8.1.1308: the Normal highlight is not defined when compiled with GUIv8.1.1308Bram Moolenaar2019-05-091-0/+2
| | | | | Problem: The Normal highlight is not defined when compiled with GUI. Solution: Always define Normal. (Christian Brabandt, closes #4072)
* patch 8.1.1307: cannot reconnect to the X server after it restartedv8.1.1307Bram Moolenaar2019-05-091-0/+2
| | | | | Problem: Cannot reconnect to the X server after it restarted. Solution: Add the :xrestore command. (Adrian Kocis, closes #844)
* patch 8.1.1306: Borland support is outdated and doesn't workv8.1.1306Bram Moolenaar2019-05-091-0/+2
| | | | | | Problem: Borland support is outdated and doesn't work. Solution: Remove Borland support, there are other (free) compilers available. (Thomas Dziedzic, Ken Takata, closes #4364)
* patch 8.1.1305: there is no easy way to manipulate environment variablesv8.1.1305Bram Moolenaar2019-05-091-0/+2
| | | | | | Problem: There is no easy way to manipulate environment variables. Solution: Add environ(), getenv() and setenv(). (Yasuhiro Matsumoto, closes #2875)
* patch 8.1.1304: MS-Windows: compiler warning for unused valuev8.1.1304Bram Moolenaar2019-05-091-0/+2
| | | | | Problem: MS-Windows: compiler warning for unused value. Solution: Adjust #ifdefs. (Ken Takata, closes #4363)
* patch 8.1.1303: not possible to hide a balloonv8.1.1303Bram Moolenaar2019-05-091-0/+2
| | | | | | Problem: Not possible to hide a balloon. Solution: Hide the balloon when balloon_show() is called with an empty string or list. Add balloon_gettext().
* patch 8.1.1302: v:beval_text is not tested in Visual modev8.1.1302Bram Moolenaar2019-05-081-0/+2
| | | | | Problem: v:beval_text is not tested in Visual mode. Solution: Add a screenshot of the balloon in Visual mode.
* patch 8.1.1301: when compiled with VIMDLL some messages are not shownv8.1.1301Bram Moolenaar2019-05-081-0/+2
| | | | | | Problem: When compiled with VIMDLL some messages are not shown. Solution: Set/reset gui.in_use and gui.starting as needed. (Ken Takata, closes #4361)
* patch 8.1.1300: in a terminal 'ballooneval' does not work right awayv8.1.1300Bram Moolenaar2019-05-081-0/+2
| | | | | | Problem: In a terminal 'ballooneval' does not work right away. Solution: Flush output after drawing the balloon. Add the <Ignore> key code. Add a test.
* patch 8.1.1299: "extends" from 'listchars' is used when 'list' is offv8.1.1299Bram Moolenaar2019-05-081-0/+2
| | | | | | | Problem: "extends" from 'listchars' is used when 'list' is off. (Hiroyuki Yoshinaga) Solution: Only use the "extends" character when 'list' is on. (Hirohito Higashi, closes #4360)
* patch 8.1.1298: invalid argument test fails without X clipboardv8.1.1298Bram Moolenaar2019-05-081-0/+2
| | | | | Problem: Invalid argument test fails without X clipboard. Solution: Test -display only with the +xterm_clipboard feature.
* patch 8.1.1297: invalid argument test fails without GTKv8.1.1297Bram Moolenaar2019-05-081-0/+2
| | | | | Problem: Invalid argument test fails without GTK. Solution: Test -display and --display separately.
* patch 8.1.1296: crash when using invalid command line argumentv8.1.1296Bram Moolenaar2019-05-081-0/+2
| | | | | Problem: Crash when using invalid command line argument. Solution: Check for options not being initialized.
* patch 8.1.1295: when vimrun.exe does not exist external command may failv8.1.1295Bram Moolenaar2019-05-071-0/+2
| | | | | | Problem: When vimrun.exe does not exist external command may fail. Solution: Use "cmd /c" twice to get the same behavior. (Ken Takata, closes #4355)
* patch 8.1.1294: MS-Windows: Some fonts return wrong average char widthv8.1.1294Bram Moolenaar2019-05-071-0/+2
| | | | | Problem: MS-Windows: Some fonts return wrong average char width. Solution: Compute the average ourselves. (Ken Takata, closes #4356)
* patch 8.1.1293: MSVC files are no longer usefulv8.1.1293Bram Moolenaar2019-05-071-0/+2
| | | | | | Problem: MSVC files are no longer useful for debugging. Newer Visual Studio versions cannot read them. Solution: Delete the files. (Ken Takata, closes #4357)
* patch 8.1.1292: invalid command line arguments not testedv8.1.1292Bram Moolenaar2019-05-071-0/+2
| | | | | Problem: Invalid command line arguments not tested. Solution: Add a test. (Dominique Pelle, closes #4346)
* patch 8.1.1291: not easy to change directory and restorev8.1.1291Bram Moolenaar2019-05-071-0/+2
| | | | | Problem: Not easy to change directory and restore. Solution: Add the chdir() function. (Yegappan Lakshmanan, closes #4358)
* patch 8.1.1290: .hgignore and .gitignore are either distributed or in gitv8.1.1290Bram Moolenaar2019-05-071-0/+2
| | | | | | | Problem: .hgignore and .gitignore are either distributed or in git, not both. Solution: Add .gitignore to the distribution and .hgignore to git. Update the entries. (Christian Brabandt, Ken Takata)
* patch 8.1.1289: may not have enough space to add "W" to search statsv8.1.1289Bram Moolenaar2019-05-071-0/+2
| | | | | Problem: May not have enough space to add "W" to search stats. Solution: Reserve a bit more space. (Christian Brabandt)
* patch 8.1.1288: search stats don't show for mapped commandv8.1.1288Bram Moolenaar2019-05-071-0/+2
| | | | | | Problem: Search stats don't show for mapped command. Solution: Remove SEARCH_PEEK from searchit flags. Add a test. (Christian Brabandt)
* patch 8.1.1287: cannot build with +eval but without +mousev8.1.1287Bram Moolenaar2019-05-071-0/+2
| | | | | Problem: Cannot build with +eval but without +mouse. Solution: Add #ifdefs around f_test_setmouse(). (John Marriott)
* patch 8.1.1286: running tests leaves XTest_tabpage_cmdheight file behindv8.1.1286Bram Moolenaar2019-05-061-0/+2
| | | | | Problem: Running tests leaves XTest_tabpage_cmdheight file behind. Solution: Delete the right file. (closes #4350)
* patch 8.1.1285: test17 is old stylev8.1.1285Bram Moolenaar2019-05-061-0/+2
| | | | | Problem: Test17 is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #4347)
* patch 8.1.1284: detecting *.tmpl as htmlcheetah is outdatedv8.1.1284Bram Moolenaar2019-05-061-0/+2
| | | | | Problem: Detecting *.tmpl as htmlcheetah is outdated. Solution: Use the generic name "template". (closes #4348)
* patch 8.1.1283: delaying half a second after the top-bot messagev8.1.1283Bram Moolenaar2019-05-061-0/+2
| | | | | Problem: Delaying half a second after the top-bot message. Solution: Instead of the delay add "W" to the search count.
* patch 8.1.1282: running make in src/po leaves LINGUAS file behindv8.1.1282Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Running make in src/po leaves LINGUAS file behind. (Ken Takata) Solution: Delete LINGUAS after running msgfmt.
* patch 8.1.1281: cannot specify a count with :chistoryv8.1.1281Bram Moolenaar2019-05-051-0/+2
| | | | | | Problem: Cannot specify a count with :chistory. Solution: Add a count to :chistory and :lhistory. (Yegappan Lakshmanan, closes #4344)
* patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar2019-05-051-0/+2
| | | | | | | | Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
* patch 8.1.1279: cannot set 'spellang' to "sr@latin"v8.1.1279Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Cannot set 'spellang' to "sr@latin". (Bojan Stipic) Solution: Allow using '@' in 'spellang'. (closes #4342)
* patch 8.1.1278: missing change for "combine" fieldv8.1.1278Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Missing change for "combine" field. Solution: Also change the textprop implementation.
* patch 8.1.1277: missing screenshot updatev8.1.1277Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Missing screenshot update. Solution: Update the screenshot.
* patch 8.1.1276: cannot combine text properties with syntax highlightingv8.1.1276Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Cannot combine text properties with syntax highlighting. Solution: Add the "combine" field to prop_type_add(). (closes #4343)
* patch 8.1.1275: cannot navigate to errors before/after the cursorv8.1.1275Bram Moolenaar2019-05-051-0/+2
| | | | | | Problem: Cannot navigate to errors before/after the cursor. Solution: Add the :cbefore and :cafter commands. (Yegappan Lakshmanan, closes #4340)
* patch 8.1.1274: after :unmenu can still execute the menu with :emenuv8.1.1274Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: After :unmenu can still execute the menu with :emenu. Solution: Do not execute a menu that was disabled for the specified mode.
* patch 8.1.1273: compiler warning in direct write codev8.1.1273Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Compiler warning in direct write code. Solution: Add a type cast.
* patch 8.1.1272: click on WinBar of other window not testedv8.1.1272Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Click on WinBar of other window not tested. Solution: Add a test case.
* patch 8.1.1271: compiler warnings for use of STRNCPY()v8.1.1271Bram Moolenaar2019-05-051-0/+2
| | | | | Problem: Compiler warnings for use of STRNCPY(). (John Marriott) Solution: Use mch_memmove() instead of STRNCPY().
* patch 8.1.1270: cannot see current match positionv8.1.1270Bram Moolenaar2019-05-041-0/+2
| | | | | | Problem: Cannot see current match position. Solution: Show "3/44" when using the "n" command and "S" is not in 'shortmess'. (Christian Brabandt, closes #4317)
* patch 8.1.1269: MS-Windows GUI: multibyte chars with a 0x80 byte do not workv8.1.1269Bram Moolenaar2019-05-041-0/+2
| | | | | | | Problem: MS-Windows GUI: multibyte chars with a 0x80 byte do not work when compiled with VIMDLL. Solution: Adjust the condition for fixing the input buffer. (Ken Takata, closes #4330)
* patch 8.1.1268: map completion test fails in GUIv8.1.1268Bram Moolenaar2019-05-041-0/+2
| | | | | Problem: Map completion test fails in GUI. Solution: Skip the test that fails.
* patch 8.1.1267: cannot check if GPM mouse support is workingv8.1.1267Bram Moolenaar2019-05-041-0/+2
| | | | | Problem: Cannot check if GPM mouse support is working. Solution: Add the "mouse_gpm_enable" feature.