summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2021-02-17patch 8.2.2524: cannot change the characters displayed in the foldcolumnv8.2.2524Bram Moolenaar
Problem: Cannot change the characters displayed in the foldcolumn. Solution: Add fields to 'fillchars'. (Yegappan Lakshmanan, Matthieu Coudron, closes #7860)
2021-02-17patch 8.2.2523: Svelte filetype not recognizedv8.2.2523Bram Moolenaar
Problem: Svelte filetype not recognized. Solution: Add a detection rule. (Brian Ryall, closes #7858)
2021-02-17patch 8.2.2522: Beancount filetype not recognizedv8.2.2522Bram Moolenaar
Problem: Beancount filetype not recognized. Solution: Add a detection rule. (Brian Ryall, closes #7859)
2021-02-15patch 8.2.2518: 'listchars' should be window-localv8.2.2518Bram Moolenaar
Problem: 'listchars' should be window-local. Solution: Make 'listchars' global-local. (Yegappan Lakshmanan, Marco Hinz, closes #5206, closes #7850)
2021-02-14patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some placesv8.2.2511Bram Moolenaar
Problem: Vim9: cannot use Vim9 script syntax in some places. Solution: Add the :vim9cmd command modifier. Incompatible: Makes ":vim9" mean ":vim9cmd" instead of ":vim9script".
2021-02-13patch 8.2.2508: cannot change the character displayed in non existing linesv8.2.2508Bram Moolenaar
Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes #7832, closes #3820)
2021-02-13Update runtime filesBram Moolenaar
2021-02-10patch 8.2.2490: 'wrap' option is always reset when starting diff modev8.2.2490Bram Moolenaar
Problem: 'wrap' option is always reset when starting diff mode. Solution: Add the "followwrap" item in 'diffopt'. (Rick Howe, closes #7797)
2021-02-06patch 8.2.2468: not easy to get the full command name from a shortened onev8.2.2468Bram Moolenaar
Problem: Not easy to get the full command name from a shortened one. Solution: Add fullcommand(). (Martin Tournoij, closes #7777)
2021-02-03patch 8.2.2455: Vim9: key type for literal dict and indexing is inconsistentv8.2.2455Bram Moolenaar
Problem: Vim9: key type that can be used for literal dict and indexing is inconsistent. Solution: Allow using number and bool as key for a literal dict. (#7771)
2021-02-03patch 8.2.2454: leading space can not be made visiblev8.2.2454Bram Moolenaar
Problem: Leading space can not be made visible. Solution: Add "lead:" to 'listchars'. (closes #7772)
2021-02-01patch 8.2.2449: Vim9: flatten() always changes the list typev8.2.2449Bram Moolenaar
Problem: Vim9: flatten() always changes the list type. Solution: Disallow using flatten() and add flattennew().
2021-01-31patch 8.2.2440: documentation based on patches is outdatedv8.2.2440Bram Moolenaar
Problem: Documentation based on patches is outdated. Solution: Add changes to documentation in a patch.
2021-01-31patch 8.2.2435: setline() gives an error for some typesv8.2.2435Bram Moolenaar
Problem: setline() gives an error for some types. Solution: Allow any type, convert each item to a string.
2021-01-26patch 8.2.2415: no way to check for the cmdwin featurev8.2.2415Bram Moolenaar
Problem: No way to check for the cmdwin feature, cmdline_hist is now always enabled. Solution: Add has('cmdwin') support. Skip arglist test on Windows temporarily.
2021-01-25Update runtime files.Bram Moolenaar
2021-01-24patch 8.2.2402: some filetypes not detectedv8.2.2402Bram Moolenaar
Problem: Some filetypes not detected. Solution: Detect Ruby Signature and Puppet related files. (Doug Kearns)
2021-01-24patch 8.2.2400: Vim9: compiled functions are not profiledv8.2.2400Bram Moolenaar
Problem: Vim9: compiled functions are not profiled. Solution: Add initial changes to profile compiled functions. Fix that a script-local function was hard to debug.
2021-01-22patch 8.2.2392: fennel filetype not recognizedv8.2.2392Bram Moolenaar
Problem: Fennel filetype not recognized. Solution: Detect with pattern and hashbang. (Chinmay Dalal, closes #7729)
2021-01-21patch 8.2.2388: no easy way to get the maximum or mininum number valuev8.2.2388Bram Moolenaar
Problem: No easy way to get the maximum or mininum number value. Solution: Add v:numbermax and v:numbermin.
2021-01-21patch 8.2.2384: turtle filetype not recognizedv8.2.2384Bram Moolenaar
Problem: Turtle filetype not recognized. Solution: Add a rule to detect turtle files. (closes #7722)
2021-01-18Update runtime files.Bram Moolenaar
2021-01-16patch 8.2.2366: when using ":sleep" the cursor is always displayedv8.2.2366Bram Moolenaar
Problem: When using ":sleep" the cursor is always displayed. Solution: Do not display the cursor when using ":sleep!". (Jeremy Lerner, closes #7688)
2021-01-15patch 8.2.2353: spartql files are not detectedv8.2.2353Bram Moolenaar
Problem: Spartql files are not detected. Solution: Add the sparql filetype. (closes #7679)
2021-01-14patch 8.2.2345: no focus events in a terminalv8.2.2345Bram Moolenaar
Problem: No focus events in a terminal. Solution: Add the t_fd and t_fe termcap entries and implement detecting focus events. (Hayaki Saito, Magnus Groß, closes #7673, closes #609, closes #5526)
2021-01-13patch 8.2.2344: using inclusive index for slice is not always desiredv8.2.2344Bram Moolenaar
Problem: Using inclusive index for slice is not always desired. Solution: Add the slice() method, which has an exclusive index. (closes #7408)
2021-01-13patch 8.2.2343: Vim9: return type of readfile() is anyv8.2.2343Bram Moolenaar
Problem: Vim9: return type of readfile() is any. Solution: Add readblob() so that readfile() can be expected to always return a list of strings. (closes #7671)
2021-01-12patch 8.2.2339: cannot get the type of a value as a stringv8.2.2339Bram Moolenaar
Problem: Cannot get the type of a value as a string. Solution: Add typename().
2021-01-12patch 8.2.2336: Vim9: not possible to extend dictionary with different typev8.2.2336Bram Moolenaar
Problem: Vim9: it is not possible to extend a dictionary with different item types. Solution: Add extendnew(). (closes #7666)
2021-01-12patch 8.2.2334: Pascal-like filetypes not always detectedv8.2.2334Bram Moolenaar
Problem: Pascal-like filetypes not always detected. Solution: Improved Puppet, InstantFPC and Pascal detection. (Doug Kearns, closes #7662)
2021-01-11Update runtime files.Bram Moolenaar
2021-01-10patch 8.2.2324: not easy to get mark en cursor posotion by character countv8.2.2324Bram Moolenaar
Problem: Not easy to get mark en cursor posotion by character count. Solution: Add functions that use character index. (Yegappan Lakshmanan, closes #7648)
2021-01-04patch 8.2.2296: cannot use CTRL-N and CTRL-P in a popup menuv8.2.2296Bram Moolenaar
Problem: Cannot use CTRL-N and CTRL-P in a popup menu. Solution: Use CTRL-N like <Down> and CTRL-P like <Up>. (closes #7614)
2021-01-03patch 8.2.2291: Vim9: cannot use "null" for v:nullv8.2.2291Bram Moolenaar
Problem: Vim9: cannot use "null" for v:null. Solution: Support "null" like "true" and "false". (closes #7495)
2021-01-02patch 8.2.2280: fuzzy matching doesn't give access to the scoresv8.2.2280Bram Moolenaar
Problem: Fuzzy matching doesn't give access to the scores. Solution: Return the scores with a third list. (Yegappan Lakshmanan, closes #7596)
2021-01-02Update runtime files.Bram Moolenaar
2021-01-01patch 8.2.2258: not all OCaml related files are detectedv8.2.2258Bram Moolenaar
Problem: Not all OCaml related files are detected. Solution: Update OCaml file type detection. (Markus Mottl, closes #7590)
2020-12-29patch 8.2.2246: cursor keys not recognized at the hit-Enter promptv8.2.2246Bram Moolenaar
Problem: Cursor keys not recognized at the hit-Enter prompt after executing an external command. Solution: Change the codes for the extra cursor keys. (closes #7562) Tune the delays to avoid test flakyness.
2020-12-28patch 8.2.2239: Vim9: concatenating lines with backslash is inconvenientv8.2.2239Bram Moolenaar
Problem: Vim9: concatenating lines with backslash is inconvenient. Solution: Support concatenating lines starting with '|', useful for :autocmd, :command, etc. (closes #6702)
2020-12-28patch 8.2.2236: 'scroll' option can change when setting the statuslinev8.2.2236Bram Moolenaar
Problem: 'scroll' option can change when setting the statusline or tabline but the option context is not updated. Solution: Update the script context when the scroll option is changed as a side effect. (Christian Brabandt, closes #7533)
2020-12-28patch 8.2.2233: cannot convert a byte index into a character indexv8.2.2233Bram Moolenaar
Problem: Cannot convert a byte index into a character index. Solution: Add charidx(). (Yegappan Lakshmanan, closes #7561)
2020-12-26patch 8.2.2223: Vim9: Reloading marks a :def function as deletedv8.2.2223Bram Moolenaar
Problem: Vim9: Reloading marks a :def function as deleted. Solution: Clear the function contents but keep the index.
2020-12-26patch 8.2.2222: Vim9: cannot keep script variables when reloadingv8.2.2222Bram Moolenaar
Problem: Vim9: cannot keep script variables when reloading. Solution: Add the "noclear" argument to :vim9script.
2020-12-24patch 8.2.2204: Vim9: using -> both for method and lambda is confusingv8.2.2204Bram Moolenaar
Problem: Vim9: using -> both for method and lambda is confusing. Solution: Use => for lambda in :def function.
2020-12-24patch 8.2.2203: Moodle gift files are not recognizedv8.2.2203Bram Moolenaar
Problem: Moodle gift files are not recognized. Solution: Add a filetype pattern. (Delim Temizer)
2020-12-23Update runtime files.Bram Moolenaar
2020-12-11patch 8.2.2128: there is no way to do something on CTRL-Zv8.2.2128Bram Moolenaar
Problem: There is no way to do something on CTRL-Z. Solution: Add VimSuspend and VimResume autocommand events. (closes #7450)
2020-12-10Update runtime files.Bram Moolenaar
2020-12-07patch 8.2.2106: TOML files are not recognizedv8.2.2106Bram Moolenaar
Problem: TOML files are not recognized. Solution: Match *.toml. (issue #7432)
2020-12-04patch 8.2.2090: Vim9: dict does not accept a key in quotesv8.2.2090Bram Moolenaar
Problem: Vim9: dict does not accept a key in quotes. Solution: Recognize a key in single or double quotes.