summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2021-10-20patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalidv8.2.3545zeertzjq
Problem: setcellwidths() may make 'listchars' or 'fillchars' invalid. Solution: Check the value and give an error. (closes #9024)
2021-10-17patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scopev8.2.3528Bram Moolenaar
Problem: 'thesaurus' and 'thesaurusfunc' do not have the same scope. Solution: Make 'thesaurusfunc' global-local.
2021-10-16patch 8.2.3524: GUI: ligatures are not usedv8.2.3524Dusan Popovic
Problem: GUI: ligatures are not used. Solution: Add the 'guiligatures' option. (Dusan Popovic, closes #8933)
2021-10-16patch 8.2.3522: cannot use \x and \u when setting 'listchars'v8.2.3522Bram Moolenaar
Problem: Cannot use \x and \u when setting 'listchars'. Solution: Support hex and unicode in hex form. (closes #9006)
2021-10-16patch 8.2.3520: cannot define a function for thesaurus completionv8.2.3520Yegappan Lakshmanan
Problem: Cannot define a function for thesaurus completion. Solution: Add 'thesaurusfunc'. (Yegappan Lakshmanan, closes #8987, closes 8950)
2021-10-16Update runtime filesBram Moolenaar
2021-10-16patch 8.2.3519: TOML files are not recognizedv8.2.3519Aman Verma
Problem: TOML files are not recognized. Solution: Add filetype patterns for TOML. (Aman Verma, closes #8984)
2021-10-15patch 8.2.3516: terminal window does not have transparent backgroundv8.2.3516Milly
Problem: Terminal window does not have transparent background when 'termguicolors' is used. Solution: Fix the background color. (closes #2361, closes #9002)
2021-10-14patch 8.2.3510: changes are only detected with one second accuracyv8.2.3510Leah Neukirchen
Problem: Changes are only detected with one second accuracy. Solution: Use the nanosecond time if possible. (Leah Neukirchen, closes #8873, closes #8875)
2021-10-14patch 8.2.3509: undo file is not syncedv8.2.3509Bram Moolenaar
Problem: Undo file is not synced. (Sami Farin) Solution: Sync the undo file if 'fsync' is set. (Christian Brabandt, closes #8879, closes #8920)
2021-10-13patch 8.2.3503: Vim9: using g:pat:cmd is confusingv8.2.3503Bram Moolenaar
Problem: Vim9: using g:pat:cmd is confusing. Solution: Do not recognize g: as the :global command. Also for s:pat:repl. (closes #8982)
2021-10-12patch 8.2.3501: tmux filetype dection is incompletev8.2.3501Eric Pruitt
Problem: tmux filetype dection is incomplete Solution: Also use tmux for files having text after .conf. (Eric Pruitt, closes #8971)
2021-10-04patch 8.2.3474: some places use "Vimscript" instead of "Vim script"v8.2.3474h-east
Problem: Some places use "Vimscript" instead of "Vim script". Solution: Consistently use "Vim script". (Hirohito Higashi, closes #8910)
2021-10-04Update runtime filesBram Moolenaar
2021-10-04patch 8.2.3473: some files with tcl syntax are not recognizedv8.2.3473Bram Moolenaar
Problem: Some files with tcl syntax are not recognized. Solution: Add a few file patterns. (Doug Kearns
2021-10-03patch 8.2.3469: some files with json syntax are not recognizedv8.2.3469Bram Moolenaar
Problem: Some files with json syntax are not recognized. Solution: Add a few file patterns. (Emiliano Ruiz Carletti, closes #8947)
2021-10-03patch 8.2.3466: completion submode not indicated for virtual replacev8.2.3466zeertzjq
Problem: Completion submode not indicated for virtual replace. Solution: Add submode to "Rv". (closes #8945)
2021-10-03patch 8.2.3465: cannot detect insert scroll modev8.2.3465zeertzjq
Problem: Cannot detect insert scroll mode. Solution: Add "scroll" to complete_info(). (closes #8943)
2021-10-03patch 8.2.3464: nginx files are not recognizedv8.2.3464Chris Aumann
Problem: nginx files are not recognized. Solution: Add several file patterns. (Chris Aumann, closes #8922)
2021-10-02patch 8.2.3461: cannot distinguish Normal and Terminal-Normal modev8.2.3461Bram Moolenaar
Problem: Cannot distinguish Normal and Terminal-Normal mode. Solution: Make mode() return "nt" for Terminal-Normal mode. (issue #8856)
2021-09-30patch 8.2.3459: Vim9: need more tests for empty string argumentsv8.2.3459Yegappan Lakshmanan
Problem: Vim9: need more tests for empty string arguments. Solution: Add more tests. Also use empty argument with menu_info() to get the top-level menu names. (Yegappan Lakshmanan, closes #8925)
2021-09-26patch 8.2.3458: not all dictdconf files are recognizedv8.2.3458Bram Moolenaar
Problem: Not all dictdconf files are recognized. Solution: Adjust the pattern. (Doug Kearns)
2021-09-21Update runtime filesBram Moolenaar
2021-09-21patch 8.2.3452: MPD files are not recognizedv8.2.3452Steven Penny
Problem: MPD files are not recognized. Solution: Recognize MPD files as XML. (Steven Penny, closes #8893)
2021-09-20patch 8.2.3451: not all apache files are recognizedv8.2.3451Zdenek Dohnal
Problem: Not all apache files are recognized. Solution: Adjust the filetype pattern. (Zdenek Dohnal, closes #8882)
2021-09-17patch 8.2.3446: not enough tests for empty string argumentsv8.2.3446Yegappan Lakshmanan
Problem: Not enough tests for empty string arguments. Solution: Add tests, fix type check. (Yegappan Lakshmanan, closes #8881)
2021-09-14patch 8.2.3438: cannot manipulate blobsv8.2.3438Yegappan Lakshmanan
Problem: Cannot manipulate blobs. Solution: Add blob2list() and list2blob(). (Yegappan Lakshmanan, closes #8868)
2021-09-12patch 8.2.3433: :delcommand does not take a -buffer optionv8.2.3433Bram Moolenaar
Problem: :delcommand does not take a -buffer option. Solution: Add the -buffer option.
2021-09-12patch 8.2.3432: octave/Matlab filetype detection does not work properlyv8.2.3432Bram Moolenaar
Problem: Octave/Matlab filetype detection does not work properly. Solution: Update the patterns used for matching. (Doug Kearns)
2021-09-12patch 8.2.3430: no generic way to trigger an autocommand on mode changev8.2.3430=?UTF-8?q?Magnus=20Gro=C3=9F?=
Problem: No generic way to trigger an autocommand on mode change. Solution: Add the ModeChanged autocommand event. (Magnus Gross, closes #8856)
2021-09-10patch 8.2.3424: a sequence of spaces is hard to see in list modev8.2.3424zeertzjq
Problem: A sequence of spaces is hard to see in list mode. Solution: Add the "multispace" option to 'listchars'. (closes #8834)
2021-09-09Update runtime filesBram Moolenaar
2021-09-04patch 8.2.3400: ":z!" is not supportedv8.2.3400Dominique Pelle
Problem: ":z!" is not supported. Solution: Make ":z!" work and add tests. (Dominique Pellé, closes #8836) Use display height instead of current window height.
2021-09-03patch 8.2.3399: Octave files are not recognizedv8.2.3399Bram Moolenaar
Problem: Octave files are not recognized. Solution: Detect Octave files. (Doug Kearns)
2021-08-31patch 8.2.3389: cannot stop insert mode completion without side effectsv8.2.3389zeertzjq
Problem: Cannot stop insert mode completion without side effects. Solution: Add CTRL-X CTRL-Z. (closes #8821)
2021-08-29Update runtime filesBram Moolenaar
2021-08-29patch 8.2.3385: escaping for fish shell does not work properlyv8.2.3385Jason Cox
Problem: Escaping for fish shell does not work properly. Solution: Insert a backslash before a backslash. (Jason Cox, closes #8810)
2021-08-28patch 8.2.3384: cannot disable modeline for an individual filev8.2.3384Hu Jialun
Problem: Cannot disable modeline for an individual file. Solution: Recognize "nomodeline" in a modeline. (Hu Jialun, closes #8798)
2021-08-25patch 8.2.3374: Pyret files are not recognizedv8.2.3374Bram Moolenaar
Problem: Pyret files are not recognized. Solution: Recognize .arr files as Pyret. (Doug Kearns)
2021-08-23patch 8.2.3368: not all Racket files are recognizedv8.2.3368Bram Moolenaar
Problem: Not all Racket files are recognized. Solution: Also recognize .rktl and .rktd files. (Doug Kearns)
2021-08-17patch 8.2.3358: structurizr files are not recognizedv8.2.3358Bastian Venthur
Problem: Structurizr files are not recognized. Solution: Recognize the file by contents. (Bastian Venthur, closes #8764)
2021-08-16patch 8.2.3356: adding many text properties requires a lot of function callsv8.2.3356Yegappan Lakshmanan
Problem: Adding many text properties requires a lot of function calls. Solution: Add the prop_add_list() function. (Yegappan Lakshmanan, closes #8751)
2021-08-14Update runtime filesBram Moolenaar
2021-08-10patch 8.2.3323: Vim9: Cannot use :silent with :endwhilev8.2.3323Bram Moolenaar
Problem: Vim9: Cannot use :silent with :endwhile. Solution: Allow for using the :silent modifier. (closes #8737)
2021-08-08patch 8.2.3314: behavior of exists() in a :def function is unpredictablev8.2.3314Bram Moolenaar
Problem: Behavior of exists() in a :def function is unpredictable. Solution: Add exists_compiled().
2021-08-06patch 8.2.3300: Lua: can only execute on Vim command at a timev8.2.3300Yegappan Lakshmanan
Problem: Lua: can only execute on Vim command at a time. Not easy to get the Vim version. Solution: Make vim.command() accept multiple lines. Add vim.version(). (Yegappan Lakshmanan, closes #8716)
2021-08-05patch 8.2.3297: cannot use all commands inside a {} blockv8.2.3297Bram Moolenaar
Problem: Cannot use all commands inside a {} block after :command and :autocmd. Solution: Do consider \n to separate commands. (closes #8620)
2021-08-04patch 8.2.3288: cannot easily access namespace dictionaries from Luav8.2.3288Yegappan Lakshmanan
Problem: Cannot easily access namespace dictionaries from Lua. Solution: Add vim.g, vim.b, etc. (Yegappan Lakshmanan, closes #8693, from NeoVim)
2021-08-04patch 8.2.3285: scdoc filetype is not recognizedv8.2.3285Gregory Anders
Problem: Scdoc filetype is not recognized. Solution: Add filetype detection. (Gregory Anders, closes #8701)
2021-08-04patch 8.2.3283: Julia filetype is not recognizedv8.2.3283Christian Clason
Problem: Julia filetype is not recognized Solution: Add filetype detection. (Christian Clason, closes #8700)