summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime files.Bram Moolenaar2019-10-1620-147/+211
|
* patch 8.1.2144: side effects when using t_ti to enable modifyOtherKeysv8.1.2144Bram Moolenaar2019-10-121-11/+18
| | | | | Problem: Side effects when using t_ti to enable modifyOtherKeys. Solution: Add t_TI and t_TE.
* patch 8.1.2103: wrong error message if "termdebugger" is not executablev8.1.2103Bram Moolenaar2019-09-301-3/+8
| | | | | | Problem: wrong error message if "termdebugger" is not executable. Solution: Check if "termdebugger" is executable and give a clear error message. (Ozaki Kiichi, closes #5000) Fix indents.
* patch 8.1.2096: too many #ifdefsv8.1.2096Bram Moolenaar2019-09-283-6/+2
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_COMMENTS.
* Update runtime files.Bram Moolenaar2019-09-2733-232/+299
|
* patch 8.1.2086: missing a few changes for the renamed filesv8.1.2086Bram Moolenaar2019-09-272-6/+6
| | | | | Problem: Missing a few changes for the renamed files. Solution: Rename in a few more places. (Ken Takata)
* patch 8.1.2080: the terminal API is limited and can't be disabledv8.1.2080Bram Moolenaar2019-09-262-6/+28
| | | | | | Problem: The terminal API is limited and can't be disabled. Solution: Add term_setapi() to set the function prefix. (Ozaki Kiichi, closes #2907)
* patch 8.1.2076: crash when trying to put a terminal in a popup windowv8.1.2076Bram Moolenaar2019-09-251-4/+6
| | | | | | Problem: Crash when trying to put a terminal buffer in a popup window. Solution: Check for NULL buffer. Do not allow putting a terminal in a popup window.
* patch 8.1.2060: "precedes" in 'listchars' not used properlyv8.1.2060Bram Moolenaar2019-09-201-3/+3
| | | | | | Problem: "precedes" in 'listchars' not used properly. Solution: Correctly handle the "precedes" char in list mode for long lines. (Christian Brabandt, closes #4953)
* Updte runtime filesBram Moolenaar2019-09-2011-116/+168
|
* patch 8.1.2056: "make test" for indent files doesn't cause make to failv8.1.2056Bram Moolenaar2019-09-181-0/+6
| | | | | Problem: "make test" for indent files doesn't cause make to fail. Solution: Exit the script with ":cquit". (Daniel Hahler, closes #4949)
* patch 8.1.2053: SafeStateAgain not triggered if callback uses feedkeys()v8.1.2053Bram Moolenaar2019-09-181-2/+5
| | | | | | 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.2047: cannot check the current statev8.1.2047Bram Moolenaar2019-09-161-0/+30
| | | | | 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/+6
| | | | | | 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.2044: no easy way to process postponed workv8.1.2044Bram Moolenaar2019-09-151-0/+24
| | | | | Problem: No easy way to process postponed work. (Paul Jolly) Solution: Add the SafeState autocommand event.
* patch 8.1.2035: recognizing octal numbers is confusingv8.1.2035Bram Moolenaar2019-09-151-4/+25
| | | | | | 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/+5
| | | | | Problem: Dark them of GTK 3 not supported. Solution: Add the "d" flag in 'guioptions'. (Jonathan Conder, closes #4934)
* patch 8.1.2029: cannot control 'cursorline' highlighting wellv8.1.2029Bram Moolenaar2019-09-141-5/+12
| | | | | Problem: Cannot control 'cursorline' highlighting well. Solution: Add "screenline". (Christian Brabandt, closes #4933)
* Update runtime filesBram Moolenaar2019-09-1123-742/+879
|
* patch 8.1.2020: it is not easy to change the window layoutv8.1.2020Bram Moolenaar2019-09-101-0/+24
| | | | | 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-094-4/+22
| | | | | | Problem: 'cursorline' always highlights the whole line. Solution: Add 'cursorlineopt' to specify what is highlighted. (closes #4693)
* patch 8.1.2017: cannot execute commands after closing the cmdline windowv8.1.2017Bram Moolenaar2019-09-092-9/+5
| | | | | Problem: Cannot execute commands after closing the cmdline window. Solution: Also trigger BufEnter and WinEnter. (closes #4762)
* patch 8.1.2013: more functions can be used as methodsv8.1.2013Bram Moolenaar2019-09-081-6/+76
| | | | | 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-21/+90
| | | | | 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-082-0/+29
| | | | | | 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.2004: more functions can be used as methodsv8.1.2004Bram Moolenaar2019-09-071-9/+62
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* Update runtime filesBram Moolenaar2019-09-0713-26/+29
|
* patch 8.1.2000: plugin cannot get the current IME statusv8.1.2000Bram Moolenaar2019-09-071-0/+6
| | | | | Problem: Plugin cannot get the current IME status. Solution: Add the getimstatus() function. (closes #4904)
* patch 8.1.1996: more functions can be used as methodsv8.1.1996Bram Moolenaar2019-09-061-6/+44
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1995: more functions can be used as methodsv8.1.1995Bram Moolenaar2019-09-061-2/+25
| | | | | Problem: More functions can be used as methods. Solution: Make sign functions usable as a method.
* patch 8.1.1993: more functions can be used as methodsv8.1.1993Bram Moolenaar2019-09-061-1/+45
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1987: more functions can be used as methodsv8.1.1987Bram Moolenaar2019-09-041-12/+68
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1986: more functions can be used as methodsv8.1.1986Bram Moolenaar2019-09-041-2/+21
| | | | | Problem: More functions can be used as methods. Solution: Make textprop functions usable as a method.
* patch 8.1.1984: more functions can be used as methodsv8.1.1984Bram Moolenaar2019-09-041-4/+40
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1982: more functions can be used as methodsv8.1.1982Bram Moolenaar2019-09-041-1/+29
| | | | | Problem: More functions can be used as methods. Solution: Make popup functions usable as a method.
* patch 8.1.1977: terminal debugger plugin may hangv8.1.1977Bram Moolenaar2019-09-041-7/+8
| | | | | Problem: Terminal debugger plugin may hang. Solution: Wait longer when still reading symbols.
* patch 8.1.1969: popup window filter is used in all modesv8.1.1969Bram Moolenaar2019-09-031-9/+28
| | | | | Problem: Popup window filter is used in all modes. Solution: Add the "filtermode" property.
* patch 8.1.1961: more functions can be used as a methodv8.1.1961Bram Moolenaar2019-09-011-0/+40
| | | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method. Add a test for mapcheck().
* patch 8.1.1954: more functions can be used as a methodv8.1.1954Bram Moolenaar2019-08-311-2/+46
| | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
* patch 8.1.1953: more functions can be used as a methodv8.1.1953Bram Moolenaar2019-08-311-0/+50
| | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
* patch 8.1.1952: more functions can be used as a methodv8.1.1952Bram Moolenaar2019-08-311-3/+25
| | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
* Runtime files update.Bram Moolenaar2019-08-3121-987/+1334
|
* patch 8.1.1937: errors when using javascriptreactv8.1.1937Bram Moolenaar2019-08-293-3/+3
| | | | | Problem: Errors when using javascriptreact. Solution: Use ":runtime" instead of ":source". (closes #4875)
* patch 8.1.1930: cannot recognize .jsx and .tsx filesv8.1.1930Bram Moolenaar2019-08-264-1/+13
| | | | | | Problem: Cannot recognize .jsx and .tsx files. Solution: Recognize them as javascriptreact and typescriptreact. (closes #4830)
* patch 8.1.1928: popup windows don't move with the text when making changesv8.1.1928Bram Moolenaar2019-08-251-0/+82
| | | | | | | Problem: Popup windows don't move with the text when making changes. Solution: Add the 'textprop" property to the popup window options, position the popup relative to a text property. (closes #4560) No tests yet.
* patch 8.1.1925: more functions can be used as methodsv8.1.1925Bram Moolenaar2019-08-241-3/+60
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1924: using empty string for current buffer is unexpectedv8.1.1924Bram Moolenaar2019-08-241-7/+8
| | | | | Problem: Using empty string for current buffer is unexpected. Solution: Make the argument optional for bufname() and bufnr().
* patch 8.1.1921: more functions can be used as methodsv8.1.1921Bram Moolenaar2019-08-241-1/+63
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1915: more functions can be used as methodsv8.1.1915Bram Moolenaar2019-08-231-0/+48
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1913: not easy to compute the space on the command linev8.1.1913Bram Moolenaar2019-08-231-0/+7
| | | | | Problem: Not easy to compute the space on the command line. Solution: Add v:echospace. (Daniel Hahler, closes #4732)