Bram Moolenaar
f86eea9f01
patch 8.0.0788: MS-Windows: cannot build with terminal feature
...
Problem: MS-Windows: cannot build with terminal feature.
Solution: Move set_ref_in_term(). (Ozaki Kiichi)
2017-07-28 13:51:30 +02:00
Bram Moolenaar
1f28b4c6a3
patch 8.0.0787: cannot send CTRL-W command to terminal job
...
Problem: Cannot send CTRL-W command to terminal job.
Solution: Make CTRL-W . a prefex for sending a key to the job.
2017-07-28 13:48:34 +02:00
Bram Moolenaar
a2c45a17c1
patch 8.0.0784: job of terminal may be garbage collected
...
Problem: Job of terminal may be garbage collected.
Solution: Set copyID on job in terminal. (Ozaki Kiichi)
2017-07-27 22:14:59 +02:00
Bram Moolenaar
0e83f02d80
patch 8.0.0783: job of terminal may be freed too early
...
Problem: Job of terminal may be freed too early.
Solution: Increment job refcount. (Yasuhiro Matsumoto)
2017-07-27 22:07:35 +02:00
Bram Moolenaar
ab6eec3887
patch 8.0.0781: MS-Windows: memory leak when using :terminal
...
Problem: MS-Windows: Memory leak when using :terminal.
Solution: Handle failures properly. (Ken Takata)
2017-07-27 21:46:43 +02:00
Bram Moolenaar
293424c199
patch 8.0.0779: :term without an argument uses empty buffer name
...
Problem: :term without an argument uses empty buffer name but runs the
snell.
Solution: Change the command to the shell earlier.
2017-07-26 23:11:01 +02:00
Bram Moolenaar
4cc93dc85a
patch 8.0.0778: in a terminal the cursor may be hidden
...
Problem: In a terminal the cursor may be hidden and screen updating lags
behind. (Nazri Ramliy)
Solution: Switch the cursor on and flush output when needed. (Ozaki Kiichi)
2017-07-26 21:49:37 +02:00
Bram Moolenaar
a1b5b09281
patch 8.0.0777: compiler warnings with 64 bit compiler
...
Problem: Compiler warnings with 64 bit compiler.
Solution: Add type casts. (Mike Williams)
2017-07-26 21:29:34 +02:00
Bram Moolenaar
fc716d7256
patch 8.0.0775: in a terminal the cursor is updated too often
...
Problem: In a terminal the cursor is updated too often.
Solution: Only flush when needed. (Yasuhiro Matsumoto). Remeber whether the
cursor is visible. (closes #1873 )
2017-07-25 23:08:47 +02:00
Bram Moolenaar
1c84493bbe
patch 8.0.0771: cursor in terminal window not always updated in GUI
...
Problem: Cursor in a terminal window not always updated in the GUI.
Solution: Call gui_update_cursor(). (Yasuhiro Matsumoto, closes #1868 )
2017-07-24 23:36:41 +02:00
Bram Moolenaar
8a77306fa1
patch 8.0.0769: build problems with terminal on MS-Windows
...
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-24 22:29:21 +02:00
Bram Moolenaar
2155441460
patch 8.0.0768: terminal window status shows "[Scratch]"
...
Problem: Terminal window status shows "[Scratch]".
Solution: Show "[Terminal]" when no title was set. (Yasuhiro Matsumoto)
Store the terminal title that vterm sends and use it. Update the
special buffer name. (closes #1869 )
2017-07-24 21:44:43 +02:00
Bram Moolenaar
dbe948d6c3
patch 8.0.0764: 'termkey' does not work yet
...
Problem: 'termkey' does not work yet.
Solution: Implement 'termkey'.
2017-07-23 22:50:51 +02:00
Bram Moolenaar
1f2903c431
patch 8.0.0761: options not set properly for a terminal buffer
...
Problem: Options of a buffer for a terminal window are not set properly.
Solution: Add "terminal" value for 'buftype'. Make 'buftype' and
'bufhidden' not depend on the quickfix feature.
Also set the buffer name and show "running" or "finished" in the
window title.
2017-07-23 19:51:01 +02:00
Bram Moolenaar
065f41c814
patch 8.0.0760: terminal window colors wrong with 'termguicolors'
...
Problem: Terminal window colors wrong with 'termguicolors'.
Solution: Add 'termguicolors' support.
2017-07-23 18:07:56 +02:00
Bram Moolenaar
43da3e36b2
patch 8.0.0759: MS-Windows: terminal does not adjust size
...
Problem: MS-Windows: terminal does not adjust size to the Vim window size.
Solution: Add a call to winpty_set_size(). (Yasuhiro Matsumoto, closes #1863 )
2017-07-23 17:27:54 +02:00
Bram Moolenaar
cdeae99b4e
patch 8.0.0758: possible crash when using a terminal window
...
Problem: Possible crash when using a terminal window.
Solution: Check for NULL pointers. (Yasuhiro Matsumoto, closes #1864 )
2017-07-23 17:22:35 +02:00
Bram Moolenaar
26af85d97b
patch 8.0.0755: terminal window does not have colors in the GUI
...
Problem: Terminal window does not have colors in the GUI.
Solution: Lookup the GUI color.
2017-07-23 16:45:10 +02:00
Bram Moolenaar
eeac677886
patch 8.0.0754: terminal window does not support colors
...
Problem: Terminal window does not support colors.
Solution: Lookup the color attribute.
2017-07-23 15:48:37 +02:00
Bram Moolenaar
b13501f7da
patch 8.0.0753: no size reports to a job running in a terminal
...
Problem: A job running in a terminal does not get notified of changes in
the terminal size.
Solution: Use ioctl() and SIGWINCH to report the terminal size.
2017-07-22 22:32:56 +02:00
Bram Moolenaar
e173fd0972
patch 8.0.0747: :terminal without an argument doesn't work
...
Problem: :terminal without an argument doesn't work.
Solution: Use the 'shell' option. (Yasuhiro Matsumoto, closes #1860 )
2017-07-22 19:03:32 +02:00
Bram Moolenaar
61a6605ea1
patch 8.0.0746: when :term fails the job is not properly cleaned up
...
Problem: When :term fails the job is not properly cleaned up.
Solution: Free the terminal. Handle a job that failed to start. (closes
#1858 )
2017-07-22 18:39:00 +02:00
Bram Moolenaar
9f1f49b839
patch 8.0.0745: multi-byte characters in a terminal don't display well
...
Problem: multi-byte characters in a terminal window are not displayed
properly.
Solution: Set the unused screen characters. (Yasuhiro Matsumoto, closes
#1857 )
2017-07-22 18:14:17 +02:00
Bram Moolenaar
5a1feb8091
patch 8.0.0744: terminal window does not use a pty
...
Problem: A terminal window uses pipes instead of a pty.
Solution: Add pty support.
2017-07-22 18:04:08 +02:00
Bram Moolenaar
8f84c3a866
patch 8.0.0742: terminal feature does not work on MS-Windows
...
Problem: Terminal feature does not work on MS-Windows.
Solution: Use libvterm and libwinpty on MS-Windows. (Yasuhiro Matsumoto)
2017-07-22 16:14:44 +02:00
Bram Moolenaar
e906ae85b2
patch 8.0.0740: cannot resize a terminal window by the command
...
Problem: Cannot resize a terminal window by the command running in it.
Solution: Add support for the window size escape sequence. Make BS work.
2017-07-21 21:10:01 +02:00
Bram Moolenaar
58556cd0e5
patch 8.0.0739: terminal resizing doesn't work well.
...
Problem: Terminal resizing doesn't work well.
Solution: Resize the terminal to the Vim window and the other way around.
Avoid mapping typed keys. Set the environment properly.
2017-07-20 23:04:46 +02:00
Bram Moolenaar
e825d8b0a4
patch 8.0.0738: cannot use the mouse to resize a terminal window
...
Problem: Cannot use the mouse to resize window while the focus is in a
terminal window.
Solution: Recognize nice mouse events in the terminal window. A few more
fixes for the terminal window.
2017-07-19 23:20:19 +02:00
Bram Moolenaar
8c0095c59a
patch 8.0.0730: terminal feature only supports Unix-like systems
...
Problem: Terminal feature only supports Unix-like systems.
Solution: Prepare for adding an MS-Windows implementaiton.
2017-07-18 22:53:21 +02:00
Bram Moolenaar
96ca27a0ee
patch 8.0.0728: the terminal structure is never freed
...
Problem: The terminal structure is never freed.
Solution: Free the structure and unreference what it contains.
2017-07-17 23:20:24 +02:00
Bram Moolenaar
938783d0ab
patch 8.0.0725: a terminal window does not handle keyboard input
...
Problem: A terminal window does not handle keyboard input.
Solution: Add terminal_loop(). ":term bash -i" sort of works now.
2017-07-16 20:13:26 +02:00
Bram Moolenaar
cb8bbe9bf3
patch 8.0.0718: output of job in terminal is not displayed
...
Problem: Output of job in terminal is not displayed.
Solution: Connect the job output to the terminal.
2017-07-16 13:48:22 +02:00
Bram Moolenaar
26e8558e74
patch 8.0.0717: terminal feature precence unclear
...
Problem: Terminal feature not included in :version output.
Solution: Add +terminal or -terminal.
2017-07-15 20:05:54 +02:00
Bram Moolenaar
e4f25e4a8d
patch 8.0.0693: no terminal emulator support
...
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.
2017-07-07 11:54:15 +02:00