Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ A client library for creating Neovim plugins written in Clojure.

## Usage

<details>
<summary>Repl</summary>

### Repl

Launch Neovim, explicitly setting the `NVIM_LISTEN_ADDRESS`
Expand All @@ -31,11 +34,22 @@ user=> (require '[neovim-client.1.api :as api])
user=> (api/command c ":echo 'Hello Neovim!'")
...
```

</details>
<details>
<summary>Tmux + Repl</summary>

Alternatively, if you've got tmux installed, you can use run the script
`./tmux-run-dev.sh`, which will start Neovim, a repl, and execute similar
setup code.

I almost forgot Tmux's navigation keys to switch between panes.

```Ctrl-b arrow keys```

Your Tmux setup might use a different leader key for commands. Maybe Ctrl-c

</details>

### Examples

#### Included Sample Plugin
Expand Down