summaryrefslogtreecommitdiff
path: root/runtime/doc/terminal.txt
AgeCommit message (Collapse)Author
2017-09-17patch 8.0.1123: cannot define a toolbar for a windowBram Moolenaar
Problem: Cannot define a toolbar for a window. Solution: Add a window-local toolbar.
2017-09-14patch 8.0.1108: cannot specify mappings for the terminal windowBram Moolenaar
Problem: Cannot specify mappings for the terminal window. Solution: Add the :tmap command and associated code. (Jacob Askeland, closes #2073)
2017-09-14patch 8.0.1107: terminal debugger jumps to non-existing fileBram Moolenaar
Problem: Terminal debugger jumps to non-existing file. Solution: Check that the file exists. Add an option to make the Vim wide wide. Fix removing highlight groups.
2017-09-10patch 8.0.1092: terminal debugger can't evaluate expressionsBram Moolenaar
Problem: Terminal debugger can't evaluate expressions. Solution: Add :Evaluate and K. Various other improvements.
2017-09-09patch 8.0.1085: terminal debugger can't set breakpointsBram Moolenaar
Problem: The terminal debugger can't set breakpoints. Solution: Add :Break and :Delete commands. Also commands for stepping through code.
2017-09-02patch 8.0.1035: sending buffer lines to terminal doesn't work on MS-WindowsBram Moolenaar
Problem: Sending buffer lines to terminal doesn't work on MS-Windows. Solution: Use CR instead of NL after every line. Make the EOF text work properly. Add the ++eof argument to :terminal.
2017-08-29patch 8.0.1013: terminal window behaves different from a buffer with changesBram Moolenaar
Problem: A terminal window with a running job behaves different from a window containing a changed buffer. Solution: Do not set 'bufhidden' to "hide". Fix that a buffer where a terminal used to run is listed as "[Scratch]".
2017-08-27Update runtime filesBram Moolenaar
2017-08-20patch 8.0.0976: cannot send lines to a terminal jobBram Moolenaar
Problem: Cannot send lines to a terminal job. Solution: Make [range]terminal send selected lines to the job. Use ++rows and ++cols for the terminal size.
2017-08-18patch 8.0.0960: job in terminal does not get CTRL-CBram Moolenaar
Problem: Job in terminal does not get CTRL-C, we send a SIGINT instead. Solution: Don't call may_send_sigint() on CTRL-C. Make CTRL-W CTRL-C end the job.
2017-08-12patch 8.0.0912: cannot run a job in a hidden terminalBram Moolenaar
Problem: Cannot run a job in a hidden terminal. Solution: Add option "hidden" and ++hidden.
2017-08-10patch 8.0.0896: cannot close a terminal window when the job endsBram Moolenaar
Problem: Cannot automaticlaly close a terminal window when the job ends. Solution: Add the ++close argument to :term. Add the term_finish option to term_start(). (Yasuhiro Matsumoto, closes #1950) Also add ++open.
2017-08-05patch 8.0.0864: cannot specify the name of a terminalBram Moolenaar
Problem: Cannot specify the name of a terminal. Solution: Add the "term_name" option. (Yasuhiro Matsumoto, closes #1936)
2017-08-05patch 8.0.0863: a remote command does not work in the terminal windowBram Moolenaar
Problem: A remote command starting with CTRL-\ CTRL-N does not work in the terminal window. (Christian J. Robinson) Solution: Use CTRL-\ CTRL-N as a prefix or a Normal mode command.
2017-08-01Updated runtime filesBram Moolenaar
2017-07-30patch 8.0.0813: cannot use a terminal window while the job is runningBram Moolenaar
Problem: Cannot use Vim commands in a terminal window while the job is running. Solution: Implement Terminal Normal mode.
2017-07-28patch 8.0.0787: cannot send CTRL-W command to terminal jobBram Moolenaar
Problem: Cannot send CTRL-W command to terminal job. Solution: Make CTRL-W . a prefex for sending a key to the job.
2017-07-24patch 8.0.0769: build problems with terminal on MS-WindowsBram Moolenaar
Problem: Build problems with terminal on MS-Windows using MSVC. Solution: Remove stdbool.h dependency. Only use ScreenLinesUC when it was allocated. Fix typos. (Ken Takata)
2017-07-23Documentation updates.Bram Moolenaar
2017-07-15Updated runtime files and translations.Bram Moolenaar
2017-07-07patch 8.0.0693: no terminal emulator supportBram Moolenaar
Problem: No terminal emulator support. Cannot properly run commands in the GUI. Cannot run a job interactively with an ssh connection. Solution: Very early implementation of the :terminal command. Includes libvterm converted to ANSI C. Many parts still missing.