From 23eaf9c372e6c64be77ee6767ac9f46c42447a5d Mon Sep 17 00:00:00 2001 From: Nate Sire Date: Tue, 13 Apr 2021 15:21:17 -0400 Subject: [PATCH 1/2] update README prefer the collapse navigation --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 42a1f32..8b53aee 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,9 @@ A client library for creating Neovim plugins written in Clojure. ## Usage +
+ Repl + ### Repl Launch Neovim, explicitly setting the `NVIM_LISTEN_ADDRESS` @@ -31,11 +34,22 @@ user=> (require '[neovim-client.1.api :as api]) user=> (api/command c ":echo 'Hello Neovim!'") ... ``` - +
+
+ Tmux + Repl + 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. + +```Ctrl-b arrow keys``` + +Your Tmux setup might use a different leader key for commands. Maybe Ctrl-c + +
+ ### Examples #### Included Sample Plugin From 714b5a23d067e86efbd9b2c4a22f1e2700bc612f Mon Sep 17 00:00:00 2001 From: Nate Sire Date: Tue, 13 Apr 2021 15:22:02 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b53aee..9e84199 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ 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. +I almost forgot Tmux's navigation keys to switch between panes. ```Ctrl-b arrow keys```