summaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.0346: :horizontal modifier not fully supportedv9.0.0346zeertzjq2022-09-011-5/+5
| | | | | | Problem: :horizontal modifier not fully supported. Solution: Also use :horizontal for completion and user commands. (closes #11025)
* patch 9.0.0345: error message for list argument could be clearerv9.0.0345Bram Moolenaar2022-09-011-1/+1
| | | | | Problem: Error message for list argument could be clearer. Solution: Include the argument number. (Yegappan Lakshmanan, closes #11027)
* patch 9.0.0342: ":wincmd =" equalizes in two directionsv9.0.0342Bram Moolenaar2022-08-311-1/+12
| | | | | | Problem: ":wincmd =" equalizes in two directions. Solution: Make ":vertical wincmd =" equalize vertically only and ":horizontal wincmd =" equalize horizontally only.
* patch 9.0.0340: the 'cmdheight' zero support causes too much troublev9.0.0340Bram Moolenaar2022-08-311-16/+5
| | | | | Problem: The 'cmdheight' zero support causes too much trouble. Solution: Revert support for 'cmdheight' being zero.
* Update runtime filesBram Moolenaar2022-08-305-16/+27
|
* patch 9.0.0321: cannot use the message popup window directlyv9.0.0321Bram Moolenaar2022-08-291-0/+10
| | | | | Problem: Cannot use the message popup window directly. Solution: Add ":echowindow".
* patch 9.0.0303: it is not easy to get information about a scriptv9.0.0303Yegappan Lakshmanan2022-08-281-11/+29
| | | | | | | Problem: It is not easy to get information about a script. Solution: Make getscriptinf() return the version. When selecting a specific script return functions and variables. (Yegappan Lakshmanan, closes #10991)
* patch 9.0.0288: when 'cmdheight' is zero some messages are not displayedv9.0.0288Bram Moolenaar2022-08-271-3/+5
| | | | | Problem: When 'cmdheight' is zero some messages are not displayed. Solution: Use a popup notification window.
* patch 9.0.0285: it is not easy to change the command line from a pluginv9.0.0285Shougo Matsushita2022-08-272-6/+22
| | | | | Problem: It is not easy to change the command line from a plugin. Solution: Add setcmdline(). (Shougo Matsushita, closes #10869)
* Update runtime filesBram Moolenaar2022-08-267-3/+357
|
* patch 9.0.0280: the builtin termcap list depends on the versionv9.0.0280Bram Moolenaar2022-08-263-13/+9
| | | | | Problem: The builtin termcap list depends on the version. Solution: Always include all termcap entries. Remove duplicate lines.
* patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu'v9.0.0279Bram Moolenaar2022-08-262-8/+6
| | | | | Problem: The tiny version has the popup menu but not 'wildmenu'. Solution: Graduate the wildmenu feature.
* patch 9.0.0278: the +wildignore feature is nearly always availablev9.0.0278Bram Moolenaar2022-08-262-7/+1
| | | | | Problem: The +wildignore feature is nearly always available. Solution: Graduate +wildignore for consistency.
* patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny versionv9.0.0270Bram Moolenaar2022-08-253-6/+3
| | | | | Problem: Some values of 'path' and 'tags' do not work in the tiny version. Solution: Graduate the +path_extra feature.
* patch 9.0.0269: getscriptinfo() does not include the versionv9.0.0269Yegappan Lakshmanan2022-08-251-2/+9
| | | | | | | Problem: getscriptinfo() does not include the version. Cannot select entries by script name. Solution: Add the "version" item and the "name" argument. (Yegappan Lakshmanan, closes #10962)
* patch 9.0.0265: no good reason why the "gf" command isn't in the tiny versionv9.0.0265Bram Moolenaar2022-08-256-24/+2
| | | | | Problem: No good reason why the "gf" command is not in the tiny version. Solution: Graduate the file_in_path feature.
* patch 9.0.0261: bufload() reads a file even if the name is not a file namev9.0.0261Bram Moolenaar2022-08-251-2/+4
| | | | | | | Problem: bufload() reads a file even if the name is not a file name. (Cyker Way) Solution: Do not read the file when the buffer name is not a file name. (closes #10975)
* Update runtime filesBram Moolenaar2022-08-2410-21/+52
|
* patch 9.0.0253: a symlink to an autoload script results in two entriesv9.0.0253Bram Moolenaar2022-08-242-5/+12
| | | | | | | Problem: A symlink to an autoload script results in two entries in the list of scripts, items expected in one are actually in the other. Solution: Have one script item refer to the actually sourced one. (closes #10960)
* patch 9.0.0247: cannot add padding to virtual text without highlightv9.0.0247Bram Moolenaar2022-08-231-4/+12
| | | | | Problem: Cannot add padding to virtual text without highlight. Solution: Add the "text_padding_left" argument. (issue #10906)
* patch 9.0.0244: cannot easily get the list of sourced scriptsv9.0.0244Yegappan Lakshmanan2022-08-222-7/+22
| | | | | | Problem: Cannot easily get the list of sourced scripts. Solution: Add the getscriptinfo() function. (Yegappan Lakshmanan, closes #10957)
* Update runtime filesBram Moolenaar2022-08-195-5/+9
|
* patch 9.0.0222: no good reason why text objects are only in larger buildsv9.0.0222Bram Moolenaar2022-08-162-3/+2
| | | | | Problem: No good reason why text objects are only in larger builds. Solution: Graduate +textobjects.
* Update runtime filesBram Moolenaar2022-08-157-28/+39
|
* patch 9.0.0202: code and help for indexof() is not idealv9.0.0202Yegappan Lakshmanan2022-08-131-14/+17
| | | | | | Problem: Code and help for indexof() is not ideal. Solution: Refactor the code, improve the help. (Yegappan Lakshmanan, closes #10908)
* patch 9.0.0196: finding value in list may require a for loopv9.0.0196Yegappan Lakshmanan2022-08-132-3/+51
| | | | | Problem: Finding value in list may require a for loop. Solution: Add indexof(). (Yegappan Lakshmanan, closes #10903)
* Update runtime filesBram Moolenaar2022-08-087-37/+75
|
* patch 9.0.0144: text property cannot override 'cursorline' highlightv9.0.0144Bram Moolenaar2022-08-051-0/+2
| | | | | | Problem: Text property cannot override 'cursorline' highlight. Solution: Add the "override" flag to prop_type_add(). (closes #5533, closes #8225).
* patch 9.0.0131: virtual text with Tab is not displayed correctlyv9.0.0131Bram Moolenaar2022-08-011-0/+2
| | | | | Problem: Virtual text with Tab is not displayed correctly. Solution: Change any Tab to a space.
* Update runtime filesBram Moolenaar2022-08-014-23/+19
|
* patch 9.0.0121: cannot put virtual text after or below a linev9.0.0121Bram Moolenaar2022-07-311-5/+27
| | | | | Problem: Cannot put virtual text after or below a line. Solution: Add "text_align" and "text_wrap" arguments.
* patch 9.0.0118: no test for what patch 9.0.0155 fixesv9.0.0118zeertzjq2022-07-311-1/+1
| | | | | Problem: No test for what patch 9.0.0155 fixes. Solution: Add a test. Fix typos. (closes #10822)
* patch 9.0.0114: the command line takes up space even when not usedv9.0.0114Shougo Matsushita2022-07-301-4/+11
| | | | | | Problem: The command line takes up space even when not used. Solution: Allow for 'cmdheight' to be set to zero. (Shougo Matsushita, closes #10675, closes #940)
* patch 9.0.0111: "nocombine" is missing from synIDattr()v9.0.0111Bram Moolenaar2022-07-301-0/+1
| | | | | Problem: "nocombine" is missing from synIDattr(). Solution: Add "nocombine". (Muni Tanjim, closes #10816)
* patch 9.0.0110: help tag generation picks up words in code examplesv9.0.0110Carlo Teubner2022-07-301-10/+22
| | | | | Problem: Help tag generation picks up words in code examples. Solution: Skip over examples. (Carlo Teubner, closes #10813)
* Update runtime filesBram Moolenaar2022-07-2913-17/+62
|
* patch 9.0.0092: plugins cannot change v:completed_itemv9.0.0092Shougo Matsushita2022-07-271-0/+2
| | | | | | Problem: Plugins cannot change v:completed_item. Solution: Make v:completed_item writeable. (Shougo Matsushita, closes #10801)
* patch 9.0.0067: cannot show virtual textv9.0.0067Bram Moolenaar2022-07-251-1/+19
| | | | | Problem: Cannot show virtual text. Solution: Initial changes for virtual text support, using text properties.
* Update runtime filesBram Moolenaar2022-07-2512-42/+66
|
* patch 9.0.0058: Win32: cannot test low level eventsv9.0.0058Yegappan Lakshmanan2022-07-231-0/+10
| | | | | | Problem: Win32: cannot test low level events. Solution: Add "sendevent" to test_gui_event(). (Yegappan Lakshmanan, closes #10679)
* Runtime files updateBram Moolenaar2022-07-072-5/+10
|
* Update runtime filesBram Moolenaar2022-07-068-40/+92
|
* patch 9.0.0036: 'fillchars' cannot have window-local valuesv9.0.0036Bram Moolenaar2022-07-041-21/+23
| | | | | Problem: 'fillchars' cannot have window-local values. Solution: Make 'fillchars' global-local. (closes #5206)
* patch 9.0.0031: <cmod> of user command does not have correct verbose valuev9.0.0031zeertzjq2022-07-031-4/+4
| | | | | Problem: <cmod> of user command does not have correct verbose value. Solution: Use the value from the command modifier. (closes #10651)
* Update runtime filesBram Moolenaar2022-07-016-23/+79
|
* patch 9.0.0013: reproducing memory access errors can be difficultv9.0.0013Bram Moolenaar2022-06-301-1/+5
| | | | | | | Problem: Reproducing memory access errors can be difficult. Solution: When testing, copy each line to allocated memory, so that valgrind can detect accessing memory before and/or after it. Fix uncovered problems.
* patch 9.0.0012: signature files not detected properlyv9.0.0012Bram Moolenaar2022-06-301-0/+1
| | | | | Problem: Signature files not detected properly. Solution: Add a function to better detect signature files. (Doug Kearns)
* patch 9.0.0008: cannot specify the variable name for "xxd -i"v9.0.0008David Gow2022-06-291-0/+4
| | | | | Problem: Cannot specify the variable name for "xxd -i". Solution: Add the "-name" argument. (David Gow, closes #10599)
* patch 9.0.0007: no support for double, dotted and dashed underlinesv9.0.0007Bram Moolenaar2022-06-293-5/+27
| | | | | Problem: No support for double, dotted and dashed underlines. Solution: Add the termcap entries and highlight modes. (closes #9553)
* patch 9.0.0006: not all Visual Basic files are recognizedv9.0.0006Bram Moolenaar2022-06-291-0/+1
| | | | | Problem: Not all Visual Basic files are recognized. Solution: Change detection of *.cls files. (Doug Kearns)