summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2022-05-26patch 8.2.5019: cannot get the first screen column of a characterv8.2.5019LemonBoy
Problem: Cannot get the first screen column of a character. Solution: Let virtcol() optionally return a list. (closes #10482, closes #7964)
2022-05-25patch 8.2.5015: Hoon and Moonscript files are not recognizedv8.2.5015=?UTF-8?q?Dundar=20G=C3=B6c?=
Problem: Hoon and Moonscript files are not recognized. Solution: Add filetype patterns. (Goc Dundar, closes #10478)
2022-05-24patch 8.2.5011: Replacing an autocommand requires several linesv8.2.5011Yegappan Lakshmanan
Problem: Replacing an autocommand requires several lines. Solution: Add the "replace" flag to autocmd_add(). (Yegappan Lakshmanan, closes #10473)
2022-05-23patch 8.2.5010: the terminal debugger uses various global variablesv8.2.5010Bram Moolenaar
Problem: The terminal debugger uses various global variables. Solution: Add a dictionary to hold the terminal debugger preferences.
2022-05-22patch 8.2.5004: right shift on negative number does not work as documentedv8.2.5004Bram Moolenaar
Problem: Right shift on negative number does not work as documented. Solution: Use a uvarnumber_T type cast.
2022-05-22patch 8.2.5003: cannot do bitwise shiftsv8.2.5003Yegappan Lakshmanan
Problem: Cannot do bitwise shifts. Solution: Add the >> and << operators. (Yegappan Lakshmanan, closes #8457)
2022-05-22patch 8.2.5000: no patch for documentation updatesv8.2.5000Bram Moolenaar
Problem: No patch for documentation updates. Solution: Update documentation files.
2022-05-21patch 8.2.4993: smart/C/lisp indenting is optionalv8.2.4993Bram Moolenaar
Problem: smart/C/lisp indenting is optional, which makes the code more complex, while it only reduces the executable size a bit. Solution: Graduate FEAT_CINDENT, FEAT_SMARTINDENT and FEAT_LISP.
2022-05-21patch 8.2.4989: cannot specify a function name for :defcompilev8.2.4989Bram Moolenaar
Problem: Cannot specify a function name for :defcompile. Solution: Implement a function name argument for :defcompile.
2022-05-21Update runtime files.Bram Moolenaar
2022-05-19patch 8.2.4981: it is not possible to manipulate autocommandsv8.2.4981Yegappan Lakshmanan
Problem: It is not possible to manipulate autocommands. Solution: Add functions to add, get and set autocommands. (Yegappan Lakshmanan, closes #10291)
2022-05-18patch 8.2.4978: no error if engine selection atom is not at the startv8.2.4978Christian Brabandt
Problem: No error if engine selection atom is not at the start. Solution: Give an error. (Christian Brabandt, closes #10439)
2022-05-16patch 8.2.4965: GUI: testing mouse move event depends on screen cell sizev8.2.4965Bram Moolenaar
Problem: GUI: testing mouse move event depends on screen cell size. Solution: Multiply the row and column with the screen cell size.
2022-05-14Update runtime files, new color schemesBram Moolenaar
2022-05-12Update runtime files and translationsBram Moolenaar
2022-05-12patch 8.2.4942: error when setting 'filetype' in help file againv8.2.4942Bram Moolenaar
Problem: Error when setting 'filetype' in help file again. Solution: Deal with text property type already existing. (closes #10409)
2022-05-11patch 8.2.4939: matchfuzzypos() with "matchseq" does not have all positionsv8.2.4939zeertzjq
Problem: matchfuzzypos() with "matchseq" does not have all positions. Solution: Also add a position for white space. (closes #10404)
2022-05-10patch 8.2.4932: not easy to filter the output of maplist()v8.2.4932Ernie Rael
Problem: Not easy to filter the output of maplist(). Solution: Add mode_bits to the dictionary. (Ernie Rael, closes #10356)
2022-05-09Update runtime files, translationsBram Moolenaar
2022-05-07Update runtime filesBram Moolenaar
2022-05-07patch 8.2.4907: some users do not want a line comment always insertedv8.2.4907Bram Moolenaar
Problem: Some users do not want a line comment always inserted. Solution: Add the '/' flag to 'formatoptions' to not repeat the comment leader after a statement when using "o".
2022-05-07patch 8.2.4906: MS-Windows: cannot use transparent backgroundv8.2.4906Yasuhiro Matsumoto
Problem: MS-Windows: cannot use transparent background. Solution: Make transparent background work with 'termguicolors' and NONE background color. (Yasuhiro Matsumoto, closes #10310, closes #7162)
2022-05-07patch 8.2.4903: cannot get the current cmdline completion type and positionv8.2.4903Shougo Matsushita
Problem: Cannot get the current cmdline completion type and position. Solution: Add getcmdcompltype() and getcmdscreenpos(). (Shougo Matsushita, closes #10344)
2022-05-07patch 8.2.4902: mouse wheel scrolling is inconsistentv8.2.4902LemonBoy
Problem: Mouse wheel scrolling is inconsistent. Solution: Use the MS-Winows system setting. (closes #10368)
2022-05-06patch 8.2.4891: Vim help presentation could be betterv8.2.4891Bram Moolenaar
Problem: Vim help presentation could be better. Solution: Add an imported file for extra Vim help support. Show highlight names in the color they have.
2022-05-06patch 8.2.4883: string interpolation only works in heredocv8.2.4883LemonBoy
Problem: String interpolation only works in heredoc. Solution: Support interpolated strings. Use syntax for heredoc consistent with strings, similar to C#. (closes #10327)
2022-05-06patch 8.2.4882: cannot make 'breakindent' use a specific columnv8.2.4882Christian Brabandt
Problem: Cannot make 'breakindent' use a specific column. Solution: Add the "column" entry in 'breakindentopt'. (Christian Brabandt, closes #10362, closes #10325)
2022-05-06patch 8.2.4881: "P" in Visual mode still changes some registersv8.2.4881Shougo Matsushita
Problem: "P" in Visual mode still changes some registers. Solution: Make "P" in Visual mode not change any register. (Shougo Matsushita, closes #10349)
2022-05-04patch 8.2.4861: it is not easy to restore saved mappingsv8.2.4861Ernie Rael
Problem: It is not easy to restore saved mappings. Solution: Make mapset() accept a dict argument. (Ernie Rael, closes #10295)
2022-05-03patch 8.2.4860: MS-Windows: always uses current directory for executablesv8.2.4860Yasuhiro Matsumoto
Problem: MS-Windows: always uses current directory for executables. Solution: Check the NoDefaultCurrentDirectoryInExePath environment variable. (Yasuhiro Matsumoto, closes #10341)
2022-05-02patch 8.2.4859: wget2 files are not recognizedv8.2.4859Bram Moolenaar
Problem: wget2 files are not recognized. Solution: Add patterns to recognize wget2. (Doug Kearns)
2022-05-02patch 8.2.4857: Yaml indent for multiline is wrongv8.2.4857asmka
Problem: Yaml indent for multiline is wrong. Solution: Adjust patterns. (closes #10328, closes #8740)
2022-05-02patch 8.2.4855: robot files are not recognizedv8.2.4855Zoe Roux
Problem: Robot files are not recognized. Solution: Add patterns for robot files. (Zoe Roux, closes #10339)
2022-04-30patch 8.2.4849: Gleam filetype not detectedv8.2.4849Mathias Jean Johansen
Problem: Gleam filetype not detected. Solution: Add a pattern for Gleam files. (Mathias Jean Johansen, closes #10326)
2022-04-29patch 8.2.4846: termcodes test failsv8.2.4846zeertzjq
Problem: Termcodes test fails. Solution: use CTRL-SHIFT-V to insert an unsimplified key. (closes #10316)
2022-04-28patch 8.2.4838: checking for absolute path is not trivialv8.2.4838LemonBoy
Problem: Checking for absolute path is not trivial. Solution: Add isabsolutepath(). (closes #10303)
2022-04-27Update runtime filesBram Moolenaar
2022-04-25patch 8.2.4826: .cshtml files are not recognizedv8.2.4826jvoisin
Problem: .cshtml files are not recognized. Solution: Use html filetype for .cshtml files. (Julien Voisin, closes #10212)
2022-04-25patch 8.2.4825: can only get a list of mappingsv8.2.4825Ernie Rael
Problem: Can only get a list of mappings. Solution: Add the optional {abbr} argument. (Ernie Rael, closes #10277) Rename to maplist(). Rename test file.
2022-04-24patch 8.2.4820: not simple programmatic way to find a specific mappingv8.2.4820Ernie Rael
Problem: Not simple programmatic way to find a specific mapping. Solution: Add getmappings(). (Ernie Rael, closes #10273)
2022-04-21patch 8.2.4804: expression in heredoc doesn't work for compiled functionv8.2.4804Yegappan Lakshmanan
Problem: Expression in heredoc doesn't work for compiled function. Solution: Implement compiling the heredoc expressions. (Yegappan Lakshmanan, closes #10232)
2022-04-19patch 8.2.4793: recognizing Maxima filetype even though it might be anotherv8.2.4793Bram Moolenaar
Problem: Recognizing Maxima filetype even though it might be another. Solution: Remove *.mc and *.dem patterns from Maxima files
2022-04-19patch 8.2.4790: lilypond filetype not recognizedv8.2.4790Bram Moolenaar
Problem: Lilypond filetype not recognized. Solution: Add patterns for lilypond. (Doug Kearns)
2022-04-18Update runtime filesBram Moolenaar
2022-04-18patch 8.2.4781: Maxima files are not recognizedv8.2.4781Doron Behar
Problem: Maxima files are not recognized. Solution: Add patterns to detect Maxima files. (Doron Behar, closes #10211)
2022-04-18patch 8.2.4780: parsing an LSP message fails when it is splitv8.2.4780Yegappan Lakshmanan
Problem: Parsing an LSP message fails when it is split. Solution: Collapse the received data before parsing. (Yegappan Lakshmanan, closes #10215)
2022-04-17patch 8.2.4778: pacman files use dosini filetypev8.2.4778Chaoren Lin
Problem: Pacman files use dosini filetype. Solution: Use conf instead. (Chaoren Lin, closes #10213)
2022-04-17patch 8.2.4770: cannot easily mix expression and heredocv8.2.4770Yegappan Lakshmanan
Problem: Cannot easily mix expression and heredoc. Solution: Support in heredoc. (Yegappan Lakshmanan, closes #10138)
2022-04-16patch 8.2.4767: openscad files are not recognizedv8.2.4767salkin-mada
Problem: Openscad files are not recognized. Solution: Add a filetype pattern. (Niklas Adam, closes #10199)
2022-04-16patch 8.2.4766: KRL files using "deffct" not recognizedv8.2.4766KnoP-01
Problem: KRL files using "deffct" not recognized. Solution: Adjust the pattern used for matching. (Patrick Meiser-Knosowski, closes #10200)