summaryrefslogtreecommitdiff
path: root/runtime/doc/terminal.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Update runtime files.Bram Moolenaar2019-05-261-2/+3
|
* patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar2019-05-051-2/+1
| | | | | | | | 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.
* Update runtime files.Bram Moolenaar2019-03-171-7/+8
|
* patch 8.1.0974: cannot switch from terminal window to previous tabpagev8.1.0974Bram Moolenaar2019-02-221-0/+1
| | | | | Problem: Cannot switch from terminal window to previous tabpage. Solution: Make CTRL-W gT move to previous tabpage.
* patch 8.1.0972: cannot switch from terminal window to next tabpagev8.1.0972Bram Moolenaar2019-02-221-1/+2
| | | | | Problem: Cannot switch from terminal window to next tabpage. Solution: Make CTRL-W gt move to next tabpage.
* Update runtime files.Bram Moolenaar2019-02-171-2/+2
|
* patch 8.1.0929: no error when requesting ConPTY but it's not availablev8.1.0929Bram Moolenaar2019-02-161-3/+3
| | | | | Problem: No error when requesting ConPTY but it's not available. Solution: Add an error message. (Hirohito Higashi, closes #3967)
* patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conptyv8.1.0880Bram Moolenaar2019-02-081-4/+6
| | | | | | Problem: MS-Windows: inconsistent selection of winpty/conpty. Solution: Name option 'termwintype', use ++type argument and "term_pty" for term_start(). (Hirohito Higashi, closes #3915)
* Update runtime files.Bram Moolenaar2019-02-031-1/+1
|
* patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10v8.1.0870Bram Moolenaar2019-02-031-1/+9
| | | | | Problem: Vim doesn't use the new ConPTY support in Windows 10. Solution: Use ConPTY support, if available. (Nobuhiro Takasaki, closes #3794)
* Update runtime files.Bram Moolenaar2018-12-091-1/+1
|
* patch 8.1.0487: no menus specifically for the terminal windowv8.1.0487Bram Moolenaar2018-10-191-0/+3
| | | | | Problem: No menus specifically for the terminal window. Solution: Add :tlmenu. (Yee Cheng Chin, closes #3439) Add a menu test.
* Update runtime files.Bram Moolenaar2018-09-101-1/+12
|
* Update runtime files.Bram Moolenaar2018-08-281-0/+4
|
* Update runtime files.Bram Moolenaar2018-08-111-1/+1
|
* Update runtime files.Bram Moolenaar2018-07-291-1/+1
|
* Updated runtime and language files.Bram Moolenaar2018-07-031-10/+10
|
* patch 8.1.0080: can't see the breakpoint number in the terminal debuggerv8.1.0080Bram Moolenaar2018-06-191-5/+19
| | | | | Problem: Can't see the breakpoint number in the terminal debugger. Solution: Use the breakpoint number for the sign. (Christian Brabandt)
* Update runtime files.Bram Moolenaar2018-06-191-5/+8
|
* patch 8.1.0072: use of 'termwinkey' is inconsistentv8.1.0072Bram Moolenaar2018-06-171-1/+2
| | | | | Problem: Use of 'termwinkey' is inconsistent. Solution: Change the documentation and the behavior. (Ken Takata)
* patch 8.1.0071: terminal debugger only works with the terminal featurev8.1.0071Bram Moolenaar2018-06-171-0/+30
| | | | | | Problem: Terminal debugger only works with the terminal feature. Solution: Make it also work with a prompt buffer. Makes it possible to use on MS-Windows. Various other improvements. (closes #3012)
* patch 8.1.0049: shell cannot tell running in a terminal windowv8.1.0049Bram Moolenaar2018-06-121-0/+1
| | | | | Problem: Shell cannot tell running in a terminal window. Solution: Add the VIM_TERMINAL environment variable. (Christian Brabandt)
* Update runtime files.Bram Moolenaar2018-05-221-2/+2
|
* Vim 8.1 releasev8.1.0000Bram Moolenaar2018-05-171-3/+3
| | | | Update version number and information. Fix a couple of tests.
* Update runtime files.Bram Moolenaar2018-05-131-2/+2
|
* Update runtime files.Bram Moolenaar2018-05-061-1/+3
|
* Update runtime files.Bram Moolenaar2018-04-201-23/+23
|
* patch 8.0.1725: terminal debugger doesn't handle command argumentsv8.0.1725Bram Moolenaar2018-04-161-17/+34
| | | | | | Problem: Terminal debugger doesn't handle command arguments. Solution: Add the :TermdebugCommand command. Use a ! to execute right away. (Christian Brabandt)
* patch 8.0.1713: terminal debugger doesn't handle argumentsv8.0.1713Bram Moolenaar2018-04-141-0/+7
| | | | | | | Problem: Terminal debugger doesn't handle arguments. Solution: Use <f-args> and pass all the arguments to gdb, e.g. the core file or process number. (suggested by Christian Brabandt) Disallow starting the debugger twice.
* patch 8.0.1712: terminal scrollback is not limitedv8.0.1712Bram Moolenaar2018-04-141-3/+8
| | | | | Problem: Terminal scrollback is not limited. Solution: Add the 'terminalscroll' option.
* patch 8.0.1706: cannot sent CTRL-\ to a terminal windowv8.0.1706Bram Moolenaar2018-04-131-0/+1
| | | | | Problem: Cannot sent CTRL-\ to a terminal window. Solution: Make CTRL-W CTRL-\ send CTRL-\ to a terminal window.
* patch 8.0.1685: can't set ANSI colors of a terminal windowv8.0.1685Bram Moolenaar2018-04-101-0/+10
| | | | | | Problem: Can't set ANSI colors of a terminal window. Solution: Add term_setansicolors(), term_getansicolors() and g:term_ansi_colors. (Andy Massimino, closes #2747)
* patch 8.0.1668: terminal debugger: can't re-open source code windowv8.0.1668Bram Moolenaar2018-04-061-2/+9
| | | | | | Problem: Terminal debugger: can't re-open source code window. Solution: Add the :Source command. Also create the window if needed when gdb stops at a source line.
* Update runtime filesBram Moolenaar2018-04-061-1/+1
|
* patch 8.0.1665: when running a terminal from the GUI 'term' is not usefulv8.0.1665Bram Moolenaar2018-04-051-1/+3
| | | | | Problem: When running a terminal from the GUI 'term' is not useful. Solution: Use $TERM in the GUI if it starts with "xterm". (closes #2776)
* patch 8.0.1660: the terminal API "drop" command doesn't support optionsv8.0.1660Bram Moolenaar2018-04-041-3/+17
| | | | | Problem: The terminal API "drop" command doesn't support options. Solution: Implement the options.
* Update runtime filesBram Moolenaar2018-03-291-1/+1
|
* patch 8.0.1647: terminal API may call any user functionv8.0.1647Bram Moolenaar2018-03-261-9/+15
| | | | | | Problem: Terminal API may call a function not meant to be called by this API. Solution: Require the function to start with Tapi_.
* patch 8.0.1641: job in terminal can't communicate with Vimv8.0.1641Bram Moolenaar2018-03-251-16/+95
| | | | | Problem: Job in terminal can't communicate with Vim. Solution: Add the terminal API.
* Update runtime files. Convert a couple of help files to utf-8.Bram Moolenaar2018-03-181-6/+12
|
* patch 8.0.1612: need to close terminal after shell stoppedv8.0.1612Bram Moolenaar2018-03-161-0/+12
| | | | | Problem: Need to close terminal after shell stopped. Solution: Make :terminal without argument close the window by default.
* patch 8.0.1593: :qall never exits with an active terminal windowv8.0.1593Bram Moolenaar2018-03-101-3/+10
| | | | | Problem: :qall never exits with an active terminal window. Solution: Add a way to kill a job in a terminal window.
* Update runtime files.Bram Moolenaar2018-03-091-1/+20
|
* patch 8.0.1562: the terminal debugger can't set a breakpoint with the mousev8.0.1562Bram Moolenaar2018-03-031-27/+49
| | | | | Problem: The terminal debugger can't set a breakpoint with the mouse. Solution: Add popup menu entries.
* patch 8.0.1526: no test using a screen dump yetv8.0.1526Bram Moolenaar2018-02-201-22/+116
| | | | | Problem: No test using a screen dump yet. Solution: Add a test for C syntax highlighting. Add helper functions.
* Update runtime files.Bram Moolenaar2018-01-281-8/+10
|
* update a few runtime filesBram Moolenaar2017-12-241-2/+3
|
* Update runtime filesBram Moolenaar2017-12-171-4/+7
|
* patch 8.0.1330: MS-Windows: job in terminal can't get back to Vimv8.0.1330Bram Moolenaar2017-11-211-1/+8
| | | | | | Problem: MS-Windows: job in terminal can't get back to Vim. Solution: set VIM_SERVERNAME in the environment. (Yasuhiro Matsumoto, closes #2360)
* patch 8.0.1293: setting a breakpoint in the terminal debugger sometimes failsv8.0.1293Bram Moolenaar2017-11-121-28/+34
| | | | | Problem: Setting a breakpoint in the terminal debugger sometimes fails. Solution: Interrupt the program if needed. Set the interface to async.