summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2019-12-09Update a few runtime files.Bram Moolenaar
2019-12-08Runtime file updates.Bram Moolenaar
2019-12-07patch 8.1.2408: syntax menu and build instructions outdatedv8.1.2408Bram Moolenaar
Problem: Syntax menu and build instructions outdated. Solution: Update build instructions and syntax menu.
2019-12-07Runtime file updates.Bram Moolenaar
2019-12-05Update runtime files.Bram Moolenaar
2019-12-04Update version 8.2 notes and make syntax.Bram Moolenaar
2019-12-03Update a few runtime filesBram Moolenaar
2019-11-30Update runtime files.Bram Moolenaar
2019-11-30patch 8.1.2362: cannot place signs in a popup windowv8.1.2362Bram Moolenaar
Problem: Cannot place signs in a popup window. (Maxim Kim) Solution: Use the group prefix "PopUp" to specify which signs should show up in a popup window. (closes #5277)
2019-11-28patch 8.1.2356: rand() does not use the best algorithmv8.1.2356Bram Moolenaar
Problem: rand() does not use the best algorithm. Solution: use xoshiro128** instead of xorshift. (Kaito Udagawa, closes #5279)
2019-11-26Update runtime filesBram Moolenaar
2019-11-26patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeysv8.1.2350Bram Moolenaar
Problem: Other text for CTRL-V in Insert mode with modifyOtherKeys. Solution: Convert the Escape sequence back to key as if modifyOtherKeys is not set, and use CTRL-SHIFT-V to get the Escape sequence itself. (closes #5254)
2019-11-26patch 8.1.2345: .cjs files are not recognized as Javascriptv8.1.2345Bram Moolenaar
Problem: .cjs files are not recognized as Javascript. Solution: Add the *.cjs pattern. (closes #5268)
2019-11-25patch 8.1.2342: random number generator in Vim script is slowv8.1.2342Bram Moolenaar
Problem: Random number generator in Vim script is slow. Solution: Add rand() and srand(). (Yasuhiro Matsumoto, closes #1277)
2019-11-25patch 8.1.2341: not so easy to interrupt a script programaticallyv8.1.2341Bram Moolenaar
Problem: Not so easy to interrupt a script programatically. Solution: Add the interrupt() function. (Yasuhiro Matsumoto, closes #2834)
2019-11-21patch 8.1.2327: cannot build with Hangul inputv8.1.2327Bram Moolenaar
Problem: Cannot build with Hangul input. Solution: Remove Hangul input support.
2019-11-21patch 8.1.2326: cannot parse a date/time stringv8.1.2326Bram Moolenaar
Problem: Cannot parse a date/time string. Solution: Add strptime(). (Stephen Wall, closes #)
2019-11-20Update runtime files.Bram Moolenaar
2019-11-17patch 8.1.2315: not always using the right window when jumping to an errorv8.1.2315Bram Moolenaar
Problem: Not always using the right window when jumping to an error. Solution: Add the "uselast" flag in 'switchbuf'. (closes #1652)
2019-11-17Update runtime files.Bram Moolenaar
2019-11-16patch 8.1.2304: cannot get the mouse position when getting a mouse clickv8.1.2304Bram Moolenaar
Problem: Cannot get the mouse position when getting a mouse click. Solution: Add getmousepos().
2019-11-14Fix vim.desktop generation.Bram Moolenaar
2019-11-13Update runtime filesBram Moolenaar
2019-11-11patch 8.1.2292: v:mouse_winid not set on click in popup windowv8.1.2292Bram Moolenaar
Problem: v:mouse_winid not set on click in popup window. Solution: Set v:mouse_winid. (closes #5171)
2019-11-10Update runtime filesBram Moolenaar
2019-11-10patch 8.1.2289: after :diffsplit closing the window does not disable diffv8.1.2289Bram Moolenaar
Problem: After :diffsplit closing the window does not disable diff. Solution: Add "closeoff" to 'diffopt' and add it to the default.
2019-11-09patch 8.1.2281: 'showbreak' cannot be set for one windowv8.1.2281Bram Moolenaar
Problem: 'showbreak' cannot be set for one window. Solution: Make 'showbreak' global-local.
2019-11-09patch 8.1.2273: wrong default when "pos" is changed with popup_atcursor()v8.1.2273Bram Moolenaar
Problem: Wrong default when "pos" is changed with popup_atcursor(). Solution: Adjust the default line and col when "pos" is not the default value. (#5151)
2019-11-05patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current windowv8.1.2257Bram Moolenaar
Problem: MS-Windows GUI: scroll wheel always uses current window. Solution: Add the 'scrollfocus' option for MS-Windows.
2019-11-04patch 8.1.2253: using "which" to check for an executable is not reliablev8.1.2253Bram Moolenaar
Problem: Using "which" to check for an executable is not reliable. Solution: Use "command -v" instead. Also exit with error code when generating tags has an error. (closes #5174)
2019-11-03patch 8.1.2251: ":term command" may not work without a shellv8.1.2251Bram Moolenaar
Problem: ":term command" may not work without a shell. Solution: Add the ++shell option to :term. (closes #3340)
2019-11-03patch 8.1.2250: CTRL-U and CTRL-D don't work in popup windowv8.1.2250Bram Moolenaar
Problem: CTRL-U and CTRL-D don't work in popup window. Solution: Initialize 'scroll'. Add "lastline" in popup_getpos(). (closes #5170)
2019-11-03patch 8.1.2249: "make vimtags" does not print any messagev8.1.2249Bram Moolenaar
Problem: "make vimtags" does not print any message. Solution: Add a message that the tags have been updated.
2019-11-03patch 8.1.2247: "make vimtags" does not work in runtime/docv8.1.2247Bram Moolenaar
Problem: "make vimtags" does not work in runtime/doc. Solution: Test existence with "which" instead of "test -x". (Ken Takata)
2019-11-02patch 8.1.2242: creating docs tags uses user preferencesv8.1.2242Bram Moolenaar
Problem: Creating docs tags uses user preferences. (Tony Mechelynck) Solution: Add "--clean".
2019-11-02patch 8.1.2239: CI fails when running tests without building Vimv8.1.2239Bram Moolenaar
Problem: CI fails when running tests without building Vim. Solution: Skip creating doc tags if the execute does not exist.
2019-11-02Update runtime files.Bram Moolenaar
2019-11-01patch 8.1.2238: error in docs tags goes unnoticedv8.1.2238Bram Moolenaar
Problem: Error in docs tags goes unnoticed. Solution: Adjust tags build command. (Ken Takata, closes #5158)
2019-10-29patch 8.1.2233: cannot get the Vim command line argumentsv8.1.2233Bram Moolenaar
Problem: Cannot get the Vim command line arguments. Solution: Add v:argv. (Dmitri Vereshchagin, closes #1322)
2019-10-28patch 8.1.2231: not easy to move to the middle of a text linev8.1.2231Bram Moolenaar
Problem: Not easy to move to the middle of a text line. Solution: Add the gM command. (Yasuhiro Matsumoto, closes #2070)
2019-10-27patch 8.1.2229: cannot color number column above/below cursor differentlyv8.1.2229Bram Moolenaar
Problem: Cannot color number column above/below cursor differently. Solution: Add LineNrAbove and LineNrBelow. (Shaun Brady, closes #624)
2019-10-27patch 8.1.2226: cannot use system copy/paste in non-xterm terminalsv8.1.2226Bram Moolenaar
Problem: Cannot use system copy/paste in non-xterm terminals. Solution: Instead of setting 'mouse' to "a" set it to "nvi" in defaults.vim.
2019-10-27patch 8.1.2225: the "last used" info of a buffer is under usedv8.1.2225Bram Moolenaar
Problem: The "last used" info of a buffer is under used. Solution: Add "lastused" to getbufinfo(). List buffers sorted by last-used field. (Andi Massimino, closes #4722)
2019-10-26Update runtime filesBram Moolenaar
2019-10-26patch 8.1.2221: cannot filter :disp outputv8.1.2221Bram Moolenaar
Problem: Cannot filter :disp output. Solution: Support filtereing :disp output. (Andi Massimino, closes #5117)
2019-10-26patch 8.1.2219: no autocommand for open window with terminalv8.1.2219Bram Moolenaar
Problem: No autocommand for open window with terminal. Solution: Add TerminalWinOpen. (Christian Brabandt)
2019-10-24patch 8.1.2212: cannot see the selection type in :reg outputv8.1.2212Bram Moolenaar
Problem: Cannot see the selection type in :reg output. (Ayberk Aydın) Solution: Add c/l/b. (Christian Brabandt, closes #5110, closes #4546)
2019-10-20patch 8.1.2195: Vim does not exit when the terminal window is last windowv8.1.2195Bram Moolenaar
Problem: Vim does not exit when closing a terminal window and it is the last window. Solution: Exit Vim if the closed terminal window is the last one. (closes #4539)
2019-10-20patch 8.1.2194: modifyOtherKeys is not enabled by defaultv8.1.2194Bram Moolenaar
Problem: ModifyOtherKeys is not enabled by default. Solution: Add t_TI and t_TE to the builtin xterm termcap.
2019-10-20patch 8.1.2193: popup_setoptions(popup_getoptions()) does not workv8.1.2193Bram Moolenaar
Problem: Popup_setoptions(popup_getoptions()) does not work. Solution: Also accept a list with three entries for "moved" and "mousemoved". (closes #5081)