summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0815: maparg() does not provide enough information for mapset()v8.2.0815Bram Moolenaar2020-05-241-6/+13
| | | | | Problem: maparg() does not provide enough information for mapset(). Solution: Add "lhsraw" and "lhsrawalt" items. Drop "simplified"
* patch 8.2.0807: cannot easily restore a mappingv8.2.0807Bram Moolenaar2020-05-221-0/+19
| | | | | Problem: Cannot easily restore a mapping. Solution: Add mapset().
* patch 8.2.0791: a second popup window with terminal causes troublev8.2.0791Bram Moolenaar2020-05-181-1/+1
| | | | | | Problem: A second popup window with terminal causes trouble. Solution: Disallow opening a second terminal-popup window. (closes #6101, closes #6103) Avoid defaulting to an invalid line number.
* patch 8.2.0775: not easy to call a Vim function from Luav8.2.0775Bram Moolenaar2020-05-171-0/+9
| | | | | Problem: Not easy to call a Vim function from Lua. Solution: Add vim.call() and vim.fn(). (Prabir Shrestha, closes #6063)
* patch 8.2.0748: cannot get a list of all popupsv8.2.0748Bram Moolenaar2020-05-132-0/+7
| | | | | Problem: Cannot get a list of all popups. Solution: Add popup_list(). Use it in the test runner.
* patch 8.2.0747: cannot forcefully close all popupsv8.2.0747Bram Moolenaar2020-05-131-1/+8
| | | | | | Problem: Cannot forcefully close all popups. Solution: Add the "force" argument to popup_clear(). Use it after running a test. Put back the check for a popup when editing a file.
* Update runtime filesBram Moolenaar2020-05-1216-105/+191
|
* patch 8.2.0736: some files not recognized as pamenvv8.2.0736Bram Moolenaar2020-05-111-1/+1
| | | | | Problem: Some files not recognized as pamenv. Solution: Add pam_inv.conf. (closes #6065)
* Update runtime filesBram Moolenaar2020-05-0710-43/+106
|
* patch 8.2.0713: the pam_environment file is not recognizedv8.2.0713Bram Moolenaar2020-05-071-0/+3
| | | | | Problem: The pam_environment file is not recognized. Solution: Add a filetype pattern for pamenv. (closes #6051)
* patch 8.2.0705: indent tests don't run on CI for FreeBSDv8.2.0705Bram Moolenaar2020-05-061-0/+1
| | | | | Problem: Indent tests don't run on CI for FreeBSD. Solution: Set modeline. (Ozaki Kiichi, closes #6048)
* patch 8.2.0688: output clobbered if setting 'verbose' to see shell commandsv8.2.0688Bram Moolenaar2020-05-031-0/+2
| | | | | Problem: Output clobbered if setting 'verbose' to see shell commands. Solution: Only output "Searching for" when 'verbose' is 11 or higher.
* Update runtime filesBram Moolenaar2020-05-0122-182/+296
|
* patch 8.2.0667: cannot install Haiku version from sourcev8.2.0667Bram Moolenaar2020-04-301-15/+17
| | | | | Problem: Cannot install Haiku version from source. Solution: Update Makefile and rdef file. (Emir Sari, closes #6013)
* patch 8.2.0663: not all systemd temp files are recognizedv8.2.0663Bram Moolenaar2020-04-291-1/+3
| | | | | Problem: Not all systemd temp files are recognized. Solution: Add two more patterns. (Jamie Macdonald, closes #6003)
* patch 8.2.0644: insufficient testing for invalid function argumentsv8.2.0644Bram Moolenaar2020-04-261-2/+2
| | | | | Problem: Insufficient testing for invalid function arguments. Solution: Add more tests. (Yegappan Lakshmanan, closes #5988)
* patch 8.2.0628: error in menu translationsv8.2.0628Bram Moolenaar2020-04-2321-172/+172
| | | | | | Problem: Error in menu translations. Solution: Insert a backslash before a space in one more file. (Shun Bai, Emir Sari)
* patch 8.2.0620: error in menu translationsv8.2.0620Bram Moolenaar2020-04-232-9/+9
| | | | | Problem: Error in menu translations. Solution: Insert a backslash before a space.
* patch 8.2.0617: new error check triggers in Swedish menuv8.2.0617Bram Moolenaar2020-04-221-2/+2
| | | | | Problem: New error check triggers in Swedish menu. Solution: Insert backslash. (Mats Tegner, closes #5966)
* patch 8.2.0614: get ml_get error when deleting a line in 'completefunc'v8.2.0614Bram Moolenaar2020-04-211-2/+4
| | | | | | Problem: Get ml_get error when deleting a line in 'completefunc'. (Yegappan Lakshmanan) Solution: Lock the text while evaluating 'completefunc'.
* patch 8.2.0613: Vim9: no check for space before #commentv8.2.0613Bram Moolenaar2020-04-201-1/+1
| | | | | Problem: Vim9: no check for space before #comment. Solution: Add space checks.
* Update runtime filesBram Moolenaar2020-04-2026-84/+194
|
* patch 8.2.0599: Netbeans interface insufficiently testedv8.2.0599Bram Moolenaar2020-04-191-10/+17
| | | | | Problem: Netbeans interface insufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5921)
* patch 8.2.0590: no 'backspace' value allows ignoring the insertion pointv8.2.0590Bram Moolenaar2020-04-171-0/+3
| | | | | Problem: No 'backspace' value allows ignoring the insertion point. Solution: Add the "nostop" and 3 values. (Christian Brabandt, closes #5940)
* patch 8.2.0589: .bsd file type not recognizedv8.2.0589Bram Moolenaar2020-04-171-2/+2
| | | | | Problem: .bsd file type not recognized. Solution: Recognize .bsd as BSDL. (Daniel Kho, closes #5945)
* patch 8.2.0578: heredoc for interfaces does not support "trim"v8.2.0578Bram Moolenaar2020-04-146-24/+20
| | | | | | Problem: Heredoc for interfaces does not support "trim". Solution: Update the script heredoc support to be same as the :let command. (Yegappan Lakshmanan, closes #5916)
* patch 8.2.0574: ipv6 feature not shown in :version outputv8.2.0574Bram Moolenaar2020-04-131-1/+2
| | | | | Problem: Ipv6 feature not shown in :version output. Solution: Add ipv6 in :version output. (Ozaki Kiichi, closes #5924)
* patch 8.2.0568: the man filetype plugin overwrites the unnamed registerv8.2.0568Bram Moolenaar2020-04-131-4/+4
| | | | | Problem: The man filetype plugin overwrites the unnamed register. Solution: Use the black hole register. (Jason Franklin)
* patch 8.2.0567: Vim9: cannot put comments halfway expressionsv8.2.0567Bram Moolenaar2020-04-131-0/+12
| | | | | Problem: Vim9: cannot put comments halfway expressions. Solution: Support # comments in many places.
* patch 8.2.0563: Vim9: cannot split a function linev8.2.0563Bram Moolenaar2020-04-121-0/+7
| | | | | Problem: Vim9: cannot split a function line. Solution: Continue in next line so long as the function isn't done.
* patch 8.2.0562: Vim9: cannot split an expression into multiple linesv8.2.0562Bram Moolenaar2020-04-121-0/+12
| | | | | Problem: Vim9: cannot split an expression into multiple lines. Solution: Continue in next line after an operator.
* patch 8.2.0561: Vim9: cannot split function call in multiple linesv8.2.0561Bram Moolenaar2020-04-121-0/+13
| | | | | Problem: Vim9: cannot split function call in multiple lines. Solution: Find more arguments in following lines.
* patch 8.2.0557: no IPv6 support for channelsv8.2.0557Bram Moolenaar2020-04-122-0/+7
| | | | | Problem: No IPv6 support for channels. Solution: Add IPv6 support. (Ozaki Kiichi, closes #5893)
* patch 8.2.0555: Vim9: line continuation is not always neededv8.2.0555Bram Moolenaar2020-04-121-0/+11
| | | | | Problem: Vim9: line continuation is not always needed. Solution: Recognize continuation lines automatically in list and dict.
* patch 8.2.0549: user systemd files not recognizedv8.2.0549Bram Moolenaar2020-04-121-3/+5
| | | | | Problem: User systemd files not recognized. Solution: Add filetype patterns. (Kevin Locke, closes #5914)
* Update runtime filesBram Moolenaar2020-04-1024-88/+187
|
* patch 8.2.0532: cannot use simplify() as a methodv8.2.0532Bram Moolenaar2020-04-081-0/+2
| | | | | Problem: Cannot use simplify() as a method. Solution: Add FEARG_1. (closes #5996)
* patch 8.2.0508: Vim9: func and partial types not done yetv8.2.0508Bram Moolenaar2020-04-031-14/+25
| | | | | | Problem: Vim9: func and partial types not done yet Solution: Fill in details about func declaration, drop a separate partial declaration.
* patch 8.2.0493: Vim9: some error messages not testedv8.2.0493Bram Moolenaar2020-04-012-0/+5
| | | | | Problem: Vim9: some error messages not tested. Solution: Add more tests. Fix uncovered bugs.
* patch 8.2.0491: cannot recognize a <script> mapping using maparg()v8.2.0491Bram Moolenaar2020-04-011-0/+1
| | | | | Problem: Cannot recognize a <script> mapping using maparg(). Solution: Add the "script" key. (closes #5873)
* patch 8.2.0478: new buffers are not added to the Buffers menuv8.2.0478Bram Moolenaar2020-03-291-2/+2
| | | | | Problem: New buffers are not added to the Buffers menu. Solution: Turn number into string. (Yee Cheng Chin, closes #5864)
* Update runtime filesBram Moolenaar2020-03-2711-70/+67
|
* patch 8.2.0459: cannot check if a function name is correctv8.2.0459Bram Moolenaar2020-03-261-2/+6
| | | | | Problem: Cannot check if a function name is correct. Solution: Add "?funcname" to exists().
* patch 8.2.0455: cannot set the highlight group for a specific terminalv8.2.0455Bram Moolenaar2020-03-261-2/+9
| | | | | Problem: Cannot set the highlight group for a specific terminal. Solution: Add the "highlight" option to term_start(). (closes #5818)
* patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar2020-03-251-0/+1
| | | | | | Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
* patch 8.2.0427: it is not possible to check for a typo in a feature namev8.2.0427Bram Moolenaar2020-03-221-7/+17
| | | | | Problem: It is not possible to check for a typo in a feature name. Solution: Add an extra argument to has().
* Update runtime filesBram Moolenaar2020-03-1915-53/+104
|
* patch 8.2.0415: bsdl filetype is not detectedv8.2.0415Bram Moolenaar2020-03-191-1/+4
| | | | | Problem: Bsdl filetype is not detected. Solution: Add an entry in the filetype list. (Daniel Kho, closes #5810)
* patch 8.2.0413: buffer menu does not handle special buffers properlyv8.2.0413Bram Moolenaar2020-03-191-45/+70
| | | | | | | | Problem: Buffer menu does not handle special buffers properly. Solution: Keep a dictionary with buffer names to reliably keep track of entries. Also trigger BufFilePre and BufFilePost for command-line and terminal buffers when the name changes.
* patch 8.2.0385: menu functionality insufficiently testedv8.2.0385Bram Moolenaar2020-03-153-2/+67
| | | | | Problem: Menu functionality insufficiently tested. Solution: Add tests. Add menu_info(). (Yegappan Lakshmanan, closes #5760)