summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2019-02-16patch 8.1.0932: Farsi support is outdated and unusedv8.1.0932Bram Moolenaar
Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
2019-02-16patch 8.1.0929: no error when requesting ConPTY but it's not availablev8.1.0929Bram Moolenaar
Problem: No error when requesting ConPTY but it's not available. Solution: Add an error message. (Hirohito Higashi, closes #3967)
2019-02-15patch 8.1.0927: USE_CR is never definedv8.1.0927Bram Moolenaar
Problem: USE_CR is never defined. Solution: Remove usage of USE_CR. (Ken Takata, closes #3958)
2019-02-13patch 8.1.0911: tag line with Ex command cannot have extra fieldsv8.1.0911Bram Moolenaar
Problem: Tag line with Ex command cannot have extra fields. Solution: Recognize |;" as the end of the command. (closes #2402)
2019-02-13patch 8.1.0909: MS-Windows: using ConPTY even though it is not stablev8.1.0909Bram Moolenaar
Problem: MS-Windows: using ConPTY even though it is not stable. Solution: When ConPTY version is unstable, prefer using winpty. (Ken Takata, closes #3949)
2019-02-12patch 8.1.0902: incomplete set of assignment operatorsv8.1.0902Bram Moolenaar
Problem: Incomplete set of assignment operators. Solution: Add /=, *= and %=. (Ozaki Kiichi, closes #3931)
2019-02-10patch 8.1.0894: MS-Windows: resolve() does not return a reparse pointv8.1.0894Bram Moolenaar
Problem: MS-Windows: resolve() does not return a reparse point. Solution: Improve resolve(). (Yasuhiro Matsumoto, closes #3896)
2019-02-08patch 8.1.0881: can execute shell commands in rvim through interfacesv8.1.0881Bram Moolenaar
Problem: Can execute shell commands in rvim through interfaces. Solution: Disable using interfaces in restricted mode. Allow for writing file with writefile(), histadd() and a few others.
2019-02-08patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conptyv8.1.0880Bram Moolenaar
Problem: MS-Windows: inconsistent selection of winpty/conpty. Solution: Name option 'termwintype', use ++type argument and "term_pty" for term_start(). (Hirohito Higashi, closes #3915)
2019-02-04Add missing matchit file.Bram Moolenaar
2019-02-03Update runtime files.Bram Moolenaar
2019-02-03patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10v8.1.0870Bram Moolenaar
Problem: Vim doesn't use the new ConPTY support in Windows 10. Solution: Use ConPTY support, if available. (Nobuhiro Takasaki, closes #3794)
2019-01-31patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'v8.1.0864Bram Moolenaar
Problem: Cannot have a local value for 'scrolloff' and 'sidescrolloff'. (Gary Holloway) Solution: Make 'scrolloff' and 'sidescrolloff' global-local. (mostly by Aron Widforss, closes #3539)
2019-01-31patch 8.1.0863: cannot see what signal caused a job to endv8.1.0863Bram Moolenaar
Problem: Cannot see what signal caused a job to end. Solution: Add "termsig" to job_info(). (Ozaki Kiichi, closes #3786)
2019-01-31patch 8.1.0862: no verbose version of character classesv8.1.0862Bram Moolenaar
Problem: No verbose version of character classes. Solution: Add [:ident:], [:keyword:] and [:fname:]. (Ozaki Kiichi, closes #1373)
2019-01-31patch 8.1.0858: 'indentkeys' and 'cinkeys' defaults are differentv8.1.0858Bram Moolenaar
Problem: 'indentkeys' and 'cinkeys' defaults are different. Solution: Make them the same, update docs. (close #3882)
2019-01-29patch 8.1.0846: not easy to recognize the system Vim runs onv8.1.0846Bram Moolenaar
Problem: Not easy to recognize the system Vim runs on. Solution: Add more items to the features list. (Ozaki Kiichi, closes #3855)
2019-01-26Updated runtime files.Bram Moolenaar
2019-01-24patch 8.1.0815: dialog for file changed outside of Vim not testedv8.1.0815Bram Moolenaar
Problem: Dialog for file changed outside of Vim not tested. Solution: Add a test. Move FileChangedShell test. Add 'L' flag to feedkeys().
2019-01-23patch 8.1.0797: error E898 is used twicev8.1.0797Bram Moolenaar
Problem: Error E898 is used twice. Solution: Rename the Blob error to E899. (closes #3853)
2019-01-22patch 8.1.0793: incorrect error messages for functions that take a Blobv8.1.0793Bram Moolenaar
Problem: Incorrect error messages for functions that now take a Blob argument. Solution: Adjust the error messages. (Dominique Pelle, closes #3846)
2019-01-18patch 8.1.0775: matching too many files as zshv8.1.0775Bram Moolenaar
Problem: Matching too many files as zsh. (Danek Duvall) Solution: Be more specific with zsh filetype patterns.
2019-01-18patch 8.1.0774: VMS build is missing the blob filev8.1.0774Bram Moolenaar
Problem: VMS build is missing the blob file. Solution: Add the blob file to the build rules. (Zoltan Arpadffy)
2019-01-18patch 8.1.0771: some shell filetype patterns end in a starv8.1.0771Bram Moolenaar
Problem: Some shell filetype patterns end in a star. Solution: Make sure that patterns not ending in a star are preferred.
2019-01-17Update runtime files.Bram Moolenaar
2019-01-17patch 8.1.0763: nobody is using the Sun Workshop supportv8.1.0763Bram Moolenaar
Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
2019-01-16patch 8.1.0759: showing two characters for tab is limitedv8.1.0759Bram Moolenaar
Problem: Showing two characters for tab is limited. Solution: Allow for a third character for "tab:" in 'listchars'. (Nathaniel Braun, Ken Takata, closes #3810)
2019-01-15patch 8.1.0757: not enough documentation for Blobsv8.1.0757Bram Moolenaar
Problem: Not enough documentation for Blobs. Solution: Add a section about Blobs.
2019-01-13patch 8.1.0736: code for Blob not sufficiently testedv8.1.0736Bram Moolenaar
Problem: Code for Blob not sufficiently tested. Solution: Add more tests. Fix uncovered crash. Add test_null_blob().
2019-01-12patch 8.1.0735: cannot handle binary datav8.1.0735Bram Moolenaar
Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes #3638)
2019-01-12patch 8.1.0731: JS encoding does not handle negative infinityv8.1.0731Bram Moolenaar
Problem: JS encoding does not handle negative infinity. Solution: Add support for negative infinity for JS encoding. (Dominique Pelle, closes #3792)
2019-01-12patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePostv8.1.0729Bram Moolenaar
Problem: There is a SourcePre autocommand event but not a SourcePost. Solution: Add the SourcePost autocommand event. (closes #3739)
2019-01-11patch 8.1.0728: cannot avoid breaking after a single space.v8.1.0728Bram Moolenaar
Problem: Cannot avoid breaking after a single space. Solution: Add the 'p' flag to 'formatoptions'. (Tom Ryder)
2019-01-11patch 8.1.0720: cannot easily change the current quickfx list indexv8.1.0720Bram Moolenaar
Problem: Cannot easily change the current quickfx list index. Solution: Add the "idx" argument to setqflist(). (Yegappan Lakshmanan, closes #3701)
2019-01-11patch 8.1.0719: too many #ifdefsv8.1.0719Bram Moolenaar
Problem: Too many #ifdefs. Solution: Always build with the +visualextra feature.
2019-01-11patch 8.1.0717: there is no function for the ":sign jump" commandv8.1.0717Bram Moolenaar
Problem: There is no function for the ":sign jump" command. Solution: Add the sign_jump() function. (Yegappan Lakshmanan, closes #3780)
2019-01-11patch 8.1.0716: get warning message when 'completefunc' returns nothingv8.1.0716Bram Moolenaar
Problem: Get warning message when 'completefunc' returns nothing. Solution: Allow for returning v:none to suppress the warning message. (Yasuhiro Matsumoto, closes #3789)
2019-01-08patch 8.1.0706: tabline is not always redrawnv8.1.0706Bram Moolenaar
Problem: Tabline is not always redrawn when something that is used in 'tabline' changes. Solution: Add ":redrawtabline" so that a plugin can at least cause the redraw when needed.
2019-01-07patch 8.1.0702: ":sign place" only uses the current bufferv8.1.0702Bram Moolenaar
Problem: ":sign place" only uses the current buffer. Solution: List signs for all buffers when there is no buffer argument. Fix error message for invalid buffer name in sign_place(). (Yegappan Lakshmanan, closes #3774)
2019-01-06patch 8.1.0697: ":sign place" requires the buffer argumentv8.1.0697Bram Moolenaar
Problem: ":sign place" requires the buffer argument. Solution: Make the argument optional. Also update the help and clean up the sign test. (Yegappan Lakshmanan, closes #3767)
2019-01-06patch 8.1.0695: internal error when using :popupv8.1.0695Bram Moolenaar
Problem: Internal error when using :popup. Solution: When a menu only exists in Terminal mode give an error. (Naruhiko Nishino, closes #3765)
2019-01-01patch 8.1.0675: text property column in screen columns is not practicalv8.1.0675Bram Moolenaar
Problem: Text property column is screen columns is not practical. Solution: Use byte values for the column.
2019-01-01Update runtime filesBram Moolenaar
2018-12-29patch 8.1.0658: deleting signs and completion for :sign is insufficientv8.1.0658Bram Moolenaar
Problem: Deleting signs and completion for :sign is insufficient. Solution: Add deleting signs in a specified or any group from the current cursor location. Add group and priority to sign command completion. Add tests for different sign unplace commands. Update help text. Add tests for sign jump with group. Update help for sign jump. (Yegappan Lakshmanan, closes #3731)
2018-12-27Update runtime files.Bram Moolenaar
2018-12-27patch 8.1.0648: custom operators can't act upon a forced motionv8.1.0648Bram Moolenaar
Problem: Custom operators can't act upon a forced motion. (Christian Wellenbrock) Solution: Add the forced motion to the mode() result. (Christian Brabandt, closes #3490)
2018-12-27patch 8.1.0644: finding next sign ID is inefficientv8.1.0644Bram Moolenaar
Problem: Finding next sign ID is inefficient. Solution: Add next_sign_id. (Yegappan Lakshmanan, closes #3717)
2018-12-24patch 8.1.0634: text properties cannot cross line boundariesv8.1.0634Bram Moolenaar
Problem: Text properties cannot cross line boundaries. Solution: Support multi-line text properties.
2018-12-22patch 8.1.0621: terminal debugger does not handle unexpected debugger exitv8.1.0621Bram Moolenaar
Problem: Terminal debugger does not handle unexpected debugger exit. Solution: Check for debugger job ended and close unused buffers. (Damien)
2018-12-22patch 8.1.0619: :echomsg and :echoerr do not handle List and Dictv8.1.0619Bram Moolenaar
Problem: :echomsg and :echoerr do not handle List and Dict like :echo does. (Daniel Hahler) Solution: Be more tolerant about the expression result type.