summaryrefslogtreecommitdiff
path: root/src/version.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.2055: not easy to jump to function line from profilev8.1.2055Bram Moolenaar2019-09-181-0/+2
| | | | | | Problem: Not easy to jump to function line from profile. Solution: Use "file:99" instead of "file line 99" so that "gf" works. (Daniel Hahler, closes #4951)
* patch 8.1.2054: compiler test for Perl may failv8.1.2054Bram Moolenaar2019-09-181-0/+2
| | | | | Problem: Compiler test for Perl may fail. Solution: Accept any error line number. (James McCoy, closes #4944)
* patch 8.1.2053: SafeStateAgain not triggered if callback uses feedkeys()v8.1.2053Bram Moolenaar2019-09-181-0/+2
| | | | | | Problem: SafeStateAgain not triggered if callback uses feedkeys(). Solution: Check for safe state in the input loop. Make log messages easier to find. Add 'S' flag to state().
* patch 8.1.2052: using "x" before a closed fold may delete that foldv8.1.2052Bram Moolenaar2019-09-171-0/+2
| | | | | Problem: Using "x" before a closed fold may delete that fold. Solution: Do not translate 'x' do "dl". (Christian Brabandt, closes #4927)
* patch 8.1.2051: double-click test is a bit flakyv8.1.2051Bram Moolenaar2019-09-171-0/+2
| | | | | Problem: Double-click test is a bit flaky. Solution: Correct entry in list of flaky tests.
* patch 8.1.2050: popup window test fails in some configurationsv8.1.2050Bram Moolenaar2019-09-171-0/+2
| | | | | Problem: Popup window test fails in some configurations. (James McCoy) Solution: Clear the command line.
* patch 8.1.2049: cannot build tiny versionv8.1.2049Bram Moolenaar2019-09-171-0/+2
| | | | | Problem: Cannot build tiny version. Solution: Add #ifdefs.
* patch 8.1.2048: not clear why SafeState and SafeStateAgain are not triggeredv8.1.2048Bram Moolenaar2019-09-171-0/+2
| | | | | Problem: Not clear why SafeState and SafeStateAgain are not triggered. Solution: Add log statements.
* patch 8.1.2047: cannot check the current statev8.1.2047Bram Moolenaar2019-09-161-0/+2
| | | | | Problem: Cannot check the current state. Solution: Add the state() function.
* patch 8.1.2046: SafeState may be triggered at the wrong momentv8.1.2046Bram Moolenaar2019-09-161-0/+2
| | | | | | Problem: SafeState may be triggered at the wrong moment. Solution: Move it up higher to after where messages are processed. Add a SafeStateAgain event to tigger there.
* patch 8.1.2045: the option.c file is too bigv8.1.2045Bram Moolenaar2019-09-161-0/+2
| | | | | | Problem: The option.c file is too big. Solution: Split off the code dealing with strings. (Yegappan Lakshmanan, closes #4937)
* patch 8.1.2044: no easy way to process postponed workv8.1.2044Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: No easy way to process postponed work. (Paul Jolly) Solution: Add the SafeState autocommand event.
* patch 8.1.2043: not sufficient testing for quoted numbersv8.1.2043Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: Not sufficient testing for quoted numbers. Solution: Add a few more test cases.
* patch 8.1.2042: the evalfunc.c file is too bigv8.1.2042Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: The evalfunc.c file is too big. Solution: Move getchar() and parse_queued_messages() to getchar.c.
* patch 8.1.2041: no test for diff mode with syntax highlightingv8.1.2041Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: No test for diff mode with syntax highlighting. Solution: Add a test case.
* patch 8.1.2040: no highlighting of current line in quickfix windowv8.1.2040Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: No highlighting of current line in quickfix window. Solution: Combine with line_attr.
* patch 8.1.2039: character from 'showbreak' does not use 'wincolor'v8.1.2039Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: Character from 'showbreak' does not use 'wincolor'. (Nick Jensen) Solution: Mix with 'wincolor'. (closes #4938)
* patch 8.1.2038: has('vimscript-4') is always 0v8.1.2038Bram Moolenaar2019-09-151-0/+2
| | | | | | Problem: has('vimscript-4') is always 0. Solution: Add "vimscript-4" to the feature table. (Naruhiko Nishino, closes #4941)
* patch 8.1.2037: can call win_gotoid() in cmdline windowv8.1.2037Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: Can call win_gotoid() in cmdline window. Solution: Disallow switching windows. (Yasuhiro Matsumoto, closes #4940)
* patch 8.1.2036: the str2nr() tests failv8.1.2036Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: The str2nr() tests fail. Solution: Add missing part of patch.
* patch 8.1.2035: recognizing octal numbers is confusingv8.1.2035Bram Moolenaar2019-09-151-0/+2
| | | | | | Problem: Recognizing octal numbers is confusing. Solution: Introduce scriptversion 4: do not use octal and allow for single quote inside numbers.
* patch 8.1.2034: dark them of GTK 3 not supportedv8.1.2034Bram Moolenaar2019-09-151-0/+2
| | | | | Problem: Dark them of GTK 3 not supported. Solution: Add the "d" flag in 'guioptions'. (Jonathan Conder, closes #4934)
* patch 8.1.2033: cannot build with tiny featuresv8.1.2033Bram Moolenaar2019-09-141-0/+2
| | | | | Problem: Cannot build with tiny features. Solution: Add #ifdef.
* patch 8.1.2032: scrollbar thumb wrong in popup windowv8.1.2032Bram Moolenaar2019-09-141-0/+2
| | | | | Problem: Scrollbar thumb wrong in popup window. Solution: Adjust thumb size and position when scrolled.
* patch 8.1.2031: cursor position wrong when resizing and using concealv8.1.2031Bram Moolenaar2019-09-141-0/+2
| | | | | | Problem: Cursor position wrong when resizing and using conceal. Solution: Set the flags that the cursor position is valid when setting the row and column during redrawing. (closes #4931)
* patch 8.1.2030: tests fail when build with normal features and terminalv8.1.2030Bram Moolenaar2019-09-141-0/+2
| | | | | | Problem: Tests fail when build with normal features and terminal. (Dominique Pelle) Solution: Disable tests that won't work. (closes #4932)
* patch 8.1.2029: cannot control 'cursorline' highlighting wellv8.1.2029Bram Moolenaar2019-09-141-0/+2
| | | | | Problem: Cannot control 'cursorline' highlighting well. Solution: Add "screenline". (Christian Brabandt, closes #4933)
* patch 8.1.2028: options test script does not workv8.1.2028Bram Moolenaar2019-09-141-0/+2
| | | | | Problem: Options test script does not work. Solution: Use optiondefs.h for input.
* patch 8.1.2027: MS-Windows: problem with ambiwidth charactersv8.1.2027Bram Moolenaar2019-09-131-0/+2
| | | | | | Problem: MS-Windows: problem with ambiwidth characters. Solution: handle ambiguous width characters in ConPTY on Windows 10 (1903). (Nobuhiro Takasaki, closes #4411)
* patch 8.1.2026: possibly using uninitialized memoryv8.1.2026Bram Moolenaar2019-09-131-0/+2
| | | | | Problem: Possibly using uninitialized memory. Solution: Check if "dict" is NULL. (closes #4925)
* patch 8.1.2025: MS-Windows: Including shlguid.h causes problems for msys2v8.1.2025Bram Moolenaar2019-09-131-0/+2
| | | | | Problem: MS-Windows: Including shlguid.h causes problems for msys2. Solution: Do not include shlguid.h. (closes #4913)
* patch 8.1.2024: delete call commented out for debuggingv8.1.2024Bram Moolenaar2019-09-131-0/+2
| | | | | Problem: Delete call commented out for debugging. Solution: Restore the delete call. (Christian Brabandt)
* patch 8.1.2023: no test for synIDattr() returning "strikethrough"v8.1.2023Bram Moolenaar2019-09-131-0/+2
| | | | | Problem: No test for synIDattr() returning "strikethrough". Solution: Extend the synIDattr() test. (Jaskaran Singh, closes #4929)
* patch 8.1.2022: the option.c file is too bigv8.1.2022Bram Moolenaar2019-09-121-0/+2
| | | | | | Problem: The option.c file is too big. Solution: Move option definitions to a separate file. (Yegappan Lakshmanan, closes #4918)
* patch 8.1.2021: some global functions can be local to the filev8.1.2021Bram Moolenaar2019-09-101-0/+2
| | | | | Problem: Some global functions can be local to the file. Solution: Add "static". (Yegappan Lakshmanan, closes #4917)
* patch 8.1.2020: it is not easy to change the window layoutv8.1.2020Bram Moolenaar2019-09-101-0/+2
| | | | | Problem: It is not easy to change the window layout. Solution: Add win_splitmove(). (Andy Massimino, closes #4561)
* patch 8.1.2019: 'cursorline' always highlights the whole linev8.1.2019Bram Moolenaar2019-09-091-0/+2
| | | | | | Problem: 'cursorline' always highlights the whole line. Solution: Add 'cursorlineopt' to specify what is highlighted. (closes #4693)
* patch 8.1.2018: using freed memory when out of memory and displaying messagev8.1.2018Bram Moolenaar2019-09-091-0/+2
| | | | | Problem: Using freed memory when out of memory and displaying message. Solution: Make a copy of the message first.
* patch 8.1.2017: cannot execute commands after closing the cmdline windowv8.1.2017Bram Moolenaar2019-09-091-0/+2
| | | | | Problem: Cannot execute commands after closing the cmdline window. Solution: Also trigger BufEnter and WinEnter. (closes #4762)
* patch 8.1.2016: terminal altscreen test now fails on MS-Windowsv8.1.2016Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: Terminal altscreen test now fails on MS-Windows. Solution: Skip the test on MS-Windows
* patch 8.1.2015: terminal altscreen test still fails sometimesv8.1.2015Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: Terminal altscreen test still fails sometimes. Solution: Write the escape sequence in a file.
* patch 8.1.2014: terminal altscreen test fails sometimesv8.1.2014Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: Terminal altscreen test fails sometimes. Solution: Use WaitFor().
* patch 8.1.2013: more functions can be used as methodsv8.1.2013Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.2012: more functions can be used as methodsv8.1.2012Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: More functions can be used as methods. Solution: Make terminal functions usable as a method. Fix term_getattr().
* patch 8.1.2011: more functions can be used as methodsv8.1.2011Bram Moolenaar2019-09-081-0/+2
| | | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method. Make the window command test faster.
* patch 8.1.2010: new file uses old style commentsv8.1.2010Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: New file uses old style comments. Solution: Change to new style comments. (Yegappan Lakshmanan, closes #4910)
* patch 8.1.2009: cursorline highlighting not updated in popup windowv8.1.2009Bram Moolenaar2019-09-081-0/+2
| | | | | | Problem: Cursorline highlighting not updated in popup window. (Marko Mahnič) Solution: Check if the cursor position changed. (closes #4912)
* patch 8.1.2008: error for invalid range when using listener and undov8.1.2008Bram Moolenaar2019-09-081-0/+2
| | | | | | Problem: Error for invalid range when using listener and undo. (Paul Jolly) Solution: Do not change the cursor before the lines are restored. (closes #4908)
* patch 8.1.2007: no test for what 8.1.1926 fixesv8.1.2007Bram Moolenaar2019-09-081-0/+2
| | | | | Problem: No test for what 8.1.1926 fixes. Solution: Add a test case.
* patch 8.1.2006: build failure with huge features but without channel featurev8.1.2006Bram Moolenaar2019-09-071-0/+2
| | | | | Problem: Build failure with huge features but without channel feature. Solution: Add #ifdef. (Dominique Pelle, closes #4906)