summaryrefslogtreecommitdiffstats
path: root/runtime/doc/terminal.txt
AgeCommit message (Collapse)Author
2022-08-24Update runtime filesBram Moolenaar
2022-08-08Update runtime filesBram Moolenaar
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-26Update runtime filesBram Moolenaar
2022-06-09Update runtime filesBram Moolenaar
2022-06-03Update runtime filesBram Moolenaar
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-04-18Update runtime filesBram Moolenaar
2022-04-08Update runtime filesBram Moolenaar
2022-02-26Update runtime files.Bram Moolenaar
2022-01-23Update runtime filesBram Moolenaar
2022-01-08Update runtime filesBram Moolenaar
2021-12-24Update runtime filesBram Moolenaar
2021-11-16Update runtime filesBram Moolenaar
2021-11-13patch 8.2.3589: failure when "term_rows" of term_start() is an unusual valuev8.2.3589Bram Moolenaar
Problem: Failure when the "term_rows" argument of term_start() is an unusual value. Solution: Limit to range of zero to 1000. (closes #9116)
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-08-29Update runtime filesBram Moolenaar
2021-08-14Update runtime filesBram Moolenaar
2021-02-13Update runtime filesBram Moolenaar
2021-01-11Update runtime files.Bram Moolenaar
2021-01-02Update runtime files.Bram Moolenaar
2020-11-29Update runtime filesBram Moolenaar
2020-11-21Update runtime filesBram Moolenaar
2020-09-07Update runtime files.Bram Moolenaar
2020-06-07Update runtime filesBram Moolenaar
2020-05-26Update runtime filesBram Moolenaar
2020-05-01Update runtime filesBram Moolenaar
2020-04-10Update runtime filesBram Moolenaar
2020-03-26patch 8.2.0455: cannot set the highlight group for a specific terminalv8.2.0455Bram Moolenaar
Problem: Cannot set the highlight group for a specific terminal. Solution: Add the "highlight" option to term_start(). (closes #5818)
2020-02-04Update runtime files.Bram Moolenaar
2020-01-09Update runtime files.Bram Moolenaar
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-12-07Runtime file updates.Bram Moolenaar
2019-11-26Update runtime filesBram Moolenaar
2019-11-10Update runtime filesBram Moolenaar
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-02Update runtime files.Bram Moolenaar
2019-10-26Update runtime filesBram Moolenaar
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-16Update runtime files.Bram Moolenaar
2019-09-26patch 8.1.2080: the terminal API is limited and can't be disabledv8.1.2080Bram Moolenaar
Problem: The terminal API is limited and can't be disabled. Solution: Add term_setapi() to set the function prefix. (Ozaki Kiichi, closes #2907)
2019-09-20Updte runtime filesBram Moolenaar
2019-09-11Update runtime filesBram Moolenaar
2019-09-08patch 8.1.2012: more functions can be used as methodsv8.1.2012Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make terminal functions usable as a method. Fix term_getattr().
2019-07-04patch 8.1.1629: terminal function help is in the wrong filev8.1.1629Bram Moolenaar
Problem: Terminal function help is in the wrong file. Solution: Move the function details to terminal.txt.
2019-05-31Update runtime files.Bram Moolenaar
2019-05-26Update runtime files.Bram Moolenaar
2019-05-05patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar
Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
2019-03-17Update runtime files.Bram Moolenaar
2019-02-22patch 8.1.0974: cannot switch from terminal window to previous tabpagev8.1.0974Bram Moolenaar
Problem: Cannot switch from terminal window to previous tabpage. Solution: Make CTRL-W gT move to previous tabpage.