summaryrefslogtreecommitdiffstats
path: root/runtime/doc/eval.txt
AgeCommit message (Collapse)Author
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-14Update runtime files, new color schemesBram Moolenaar
2022-05-12Update runtime files and translationsBram Moolenaar
2022-05-07Update runtime filesBram Moolenaar
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-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-18Update runtime filesBram Moolenaar
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-10patch 8.2.4727: unused codev8.2.4727Dominique Pelle
Problem: Unused code. Solution: Remove code and add #ifdefs. (Dominique Pellé, closes #10136)
2022-04-08Update runtime filesBram Moolenaar
2022-03-08Update runtime filesBram Moolenaar
2022-02-26Update runtime files.Bram Moolenaar
2022-02-20Update runtime filesBram Moolenaar
2022-02-11patch 8.2.4343: when reloading not all properties are detectedv8.2.4343Rob Pilling
Problem: When reloading not all properties are detected. Solution: Add the "edit" value to v:fcs_choice. (Rob Pilling, closes #9579)
2022-02-04Update runtime files.Bram Moolenaar
2022-01-29Update runtime filesBram Moolenaar
2022-01-23Update runtime filesBram Moolenaar
2022-01-08Update runtime filesBram Moolenaar
2022-01-01patch 8.2.3969: value of MAXCOL not available in Vim scriptv8.2.3969naohiro ono
Problem: Value of MAXCOL not available in Vim script. Solution: Add v:maxcol. (Naohiro Ono, closes #9451)
2021-12-30Update runtime filesBram Moolenaar
2021-12-27patch 8.2.3917: the eval.txt help file is way too bigv8.2.3917Bram Moolenaar
Problem: The eval.txt help file is way too big. Solution: Move the builtin function details to a separate file.
2021-12-27patch 8.2.3913: help for expressions does not mention Vim9 syntaxv8.2.3913Bram Moolenaar
Problem: Help for expressions does not mention Vim9 syntax. Solution: Add the rules for Vim9 to the expression help. Rename functions to match the help.
2021-12-24Update runtime filesBram Moolenaar
2021-12-19patch 8.2.3849: functions implementing reduce and map are too longv8.2.3849Yegappan Lakshmanan
Problem: Functions implementing reduce and map are too long. Solution: Use a function for each type of value. Add a few more test cases and add to the help. (Yegappan Lakshmanan, closes #9370)
2021-12-18patch 8.2.3848: cannot use reduce() for a stringv8.2.3848rbtnn
Problem: Cannot use reduce() for a string. Solution: Make reduce() work with a string. (Naruhiko Nishino, closes #9366)
2021-12-16Update runtime filesBram Moolenaar
2021-12-15patch 8.2.3818: cannot filter or map characters in a stringv8.2.3818rbtnn
Problem: Cannot filter or map characters in a string. Solution: Make filter() and map() work on a string. (Naruhiko Nishino, closes #9327)
2021-11-27Update runtime files.Bram Moolenaar
2021-11-21Update runtime filesBram Moolenaar
2021-11-20patch 8.2.3627: difficult to know where the text starts in a windowv8.2.3627Bram Moolenaar
Problem: difficult to know where the text starts in a window. (Sergey Vlasov) Solution: Add the "textoff" entry in the result of getwininfo(). (closes #9163)
2021-11-18patch 8.2.3618: getcwd() is unclear about how 'autochdir' is usedv8.2.3618Bram Moolenaar
Problem: getcwd() is unclear about how 'autochdir' is used. Solution: Update the help for getcwd(). Without any arguments always return the actual current directory. (closes #9142)
2021-11-16Update runtime filesBram Moolenaar
2021-11-16patch 8.2.3605: cannot clear and unlinke a highlight group with hlset()v8.2.3605Yegappan Lakshmanan
Problem: Cannot clear and unlinke a highlight group with hlset() in a single call. Solution: Add the "force" option. (Yegappan Lakshmanan, closes #9117)
2021-11-13patch 8.2.3590: test for v:colornames sometimes failsv8.2.3590Drew Vogel
Problem: Test for v:colornames sometimes fails. (Dominique Pellé) Solution: Check features. Clear v:colornames between tests. (Drew Vogel, closes #9105, closes #9073)
2021-11-07Update runtime filesBram Moolenaar
2021-11-03patch 8.2.3578: manipulating highlighting is complicatedv8.2.3578Yegappan Lakshmanan
Problem: Manipulating highlighting is complicated. Solution: Add the hlget() and hlset() functions. (Yegappan Lakshmanan, closes #9039)
2021-10-24patch 8.2.3562: cannot add color namesv8.2.3562Drew Vogel
Problem: Cannot add color names. Solution: Add the v:colornames dictionary. (Drew Vogel, closes #8761)
2021-10-23Update runtime filesBram Moolenaar
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-16Update runtime filesBram Moolenaar
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-04Update runtime filesBram Moolenaar
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-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-21Update runtime filesBram Moolenaar
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-09Update runtime filesBram Moolenaar