Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fix warning unused static function | George Zhao | 2018-01-18 |
| | |||
* | Fix warning when assing size_t type value to uv_buf_t.len, convert type to ↵ | George Zhao | 2018-01-18 |
| | | | | ULONG on Windows. | ||
* | test: tty-test.c: keep `tty_out` handle around | Justin M. Keyes | 2017-08-16 |
| | | | | | Now the window_split_tab_spec.lua test seems to work. Also do some cleanup. | ||
* | test: tty-test.c: restore win32 SIGWINCH handler | Justin M. Keyes | 2017-08-16 |
| | |||
* | test: cleanup | Justin M. Keyes | 2017-08-16 |
| | |||
* | win/pty: log errors | erw7 | 2017-08-16 |
| | |||
* | win/test: tty-test: print screen size explicitly with CTRL-Q | erw7 | 2017-08-16 |
| | | | | | tty-test.exe causes abnormal termination with low repeatability, try changing it so as not to use SIGWINCH. | ||
* | win: support :terminal | erw7 | 2017-08-16 |
| | |||
* | *: Fix all V641 errors | ZyX | 2017-05-20 |
| | |||
* | *: Add comment to all C files | ZyX | 2017-04-19 |
| | |||
* | test: Handle SIGHUP in tty-test fixture. | Justin M. Keyes | 2016-12-07 |
| | | | | Closes #5727 | ||
* | Windows: Fix functionaltest fixtures | Rui Abreu Ferreira | 2016-08-07 |
| | |||
* | term: use an argument vector for termopen(). | Scott Prager | 2015-05-02 |
Old behaviour: termopen('cmd') would run `&shell &shcf "cmd"`, which caused the functional tests to fail on some systems due to the process not "owning" the terminal. Also, it is inconsistent with jobstart(). Modify termopen() so that &shell is not invoked, but maintain the old behaviour with :terminal. Factor the common code for building the argument vector from jobstart() and modify the functional tests to call termopen() instead of :terminal (fixes #2354). Also: * Add a 'name' option for termopen() so that `:terminal {cmd}` produces a buffer named "term//{cwd}/{cmd}" and termopen() users can customize the name. * Update the documentation. * Add functional tests for `:terminal` sinse its behaviour now differs from termopen(). Add "test/functional/fixtures/shell-test.c" and move "test/functional/job/tty-test.c" there, too. Helped-by: Justin M. Keyes <@justinmk> |