Merge pull request #175 from jesseleite/tmux-tip-to-tmux-section

Move tmux tip to tmux section of readme
This commit is contained in:
ThePrimeagen 2022-03-31 09:45:34 -06:00 committed by GitHub
commit b6a363c037
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,15 +73,6 @@ a new terminal is created.
lua require("harpoon.term").gotoTerminal(1) -- navigates to term 1
```
Once you switch to a terminal you can always switch back to neovim, this is a
little bash script that will switch to the window which is running neovim.
In your `tmux.conf` (or anywhere you have keybinds), add this
```bash
bind-key -r G run-shell "path-to-harpoon/harpoon/scripts/tmux/switch-back-to-nvim"
```
### Commands to Terminals
commands can be sent to any terminal
```lua
@ -109,6 +100,14 @@ lua require("harpoon.tmux").gotoTerminal("{down-of}") -- focus the pane direct
lua require("harpoon.tmux").sendCommand("%3", "ls") -- send a command to the pane with id '%3'
```
Once you switch to a tmux window you can always switch back to neovim, this is a
little bash script that will switch to the window which is running neovim.
In your `tmux.conf` (or anywhere you have keybinds), add this
```bash
bind-key -r G run-shell "path-to-harpoon/harpoon/scripts/tmux/switch-back-to-nvim"
```
### Telescope Support
1st register harpoon as a telescope extension
```lua