From 24488169564c39a506c235bf6a33b8e23a8cb528 Mon Sep 17 00:00:00 2001 From: hlpr98 Date: Mon, 27 May 2019 22:04:24 +0530 Subject: feat(tui): run TUI as external process --- runtime/doc/starting.txt | 4 ++++ runtime/doc/ui.txt | 2 ++ 2 files changed, 6 insertions(+) (limited to 'runtime') diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 1a7b73601e..24d22c62f8 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -384,6 +384,10 @@ argument. Start |RPC| server on pipe or TCP address {addr}. Sets the primary listen address |v:servername| to {addr}. |serverstart()| +--connect {addr} *--connect* + Connect to the remote nvim server instance which is listening to + {addr}. {addr} can be either a pipe or a TCP address. + ============================================================================== Initialization *initialization* *startup* diff --git a/runtime/doc/ui.txt b/runtime/doc/ui.txt index 1cffe1f902..1b699cf0a9 100644 --- a/runtime/doc/ui.txt +++ b/runtime/doc/ui.txt @@ -56,6 +56,8 @@ with these (optional) keys: - `stdin_fd` Read buffer from `fd` as if it was a stdin pipe This option can only used by |--embed| ui, see |ui-startup-stdin|. + `term_ttyin` Tells if `stdin` is a `tty` or not. + `term_ttyout` Tells if `stdout` is a `tty` or not. Specifying an unknown option is an error; UIs can check the |api-metadata| `ui_options` key for supported options. -- cgit