2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-11 13:10:34 +00:00

README: improve intro

This commit is contained in:
Marco Hinz 2018-02-28 19:56:38 +01:00
parent 1c0408644b
commit c7f954018d
No known key found for this signature in database
GPG Key ID: 1C980A1B657B4A4F

View File

@ -6,33 +6,32 @@
[![Supported Python versions](https://img.shields.io/pypi/pyversions/neovim-remote.svg)](https://pypi.python.org/pypi/neovim-remote) [![Supported Python versions](https://img.shields.io/pypi/pyversions/neovim-remote.svg)](https://pypi.python.org/pypi/neovim-remote)
[![License](https://img.shields.io/pypi/l/neovim-remote.svg)](https://pypi.python.org/pypi/neovim-remote) [![License](https://img.shields.io/pypi/l/neovim-remote.svg)](https://pypi.python.org/pypi/neovim-remote)
- [Intro](#intro)
- [Use case](#use-case) - [Use case](#use-case)
- [Installation](#installation) - [Installation](#installation)
- [Usage](#usage) - [Usage](#usage)
- [Demos](#demos) - [Demos](#demos)
- [FAQ](#faq) - [FAQ](#faq)
## Intro ---
**nvr** is a tool that helps controlling nvim processes. This package provides an executable called **nvr** which solves these cases:
It does two things: - Controlling nvim processes from the shell. E.g. opening files in another
terminal window.
- Opening files from within `:terminal` without starting a nested nvim process.
1. adds back the `--remote` family of options (see `man vim`) ---
2. helps controlling the current nvim from within `:terminal`
To target a specific nvim process, use either the `--servername` option or set Nvim always starts a server. Get its address via `:echo $NVIM_LISTEN_ADDRESS` or
the environment variable `$NVIM_LISTEN_ADDRESS`. `:echo v:servername`. Or specify an address at startup:
`NVIM_LISTEN_ADDRESS=/tmp/nvimsocket nvim`.
If the targeted address does not exist, nvr starts a new process on its own by **nvr** will use `$NVIM_LISTEN_ADDRESS` or any address given to it via
running "nvim". You can change the command by setting `$NVR_CMD`. `--servername`.
Since `$NVIM_LISTEN_ADDRESS` is implicitely set by each nvim process, you can If the targeted address does not exist, **nvr** starts a new process by running
call **nvr** from within Neovim (`:terminal`) without specifying `--servername`. "nvim". You can change the command by setting `$NVR_CMD`. _(This requires
forking, so it won't work on Windows.)_
*NOTE: This tool relies on the Unix forking model, and thus Windows is not
supported.*
## Use case ## Use case