Use the term `pane` instead of `split` when not ambiguous

/cc @Tranquility
pull/136/head
Junegunn Choi 9 years ago
parent 07e2bd673e
commit c111af0ed2

@ -14,7 +14,7 @@ Installation
fzf project consists of the followings: fzf project consists of the followings:
- `fzf` executable - `fzf` executable
- `fzf-tmux` script for launching fzf in a tmux split - `fzf-tmux` script for launching fzf in a tmux pane
- Shell extensions - Shell extensions
- Key bindings (`CTRL-T`, `CTRL-R`, and `ALT-C`) (bash, zsh, fish) - Key bindings (`CTRL-T`, `CTRL-R`, and `ALT-C`) (bash, zsh, fish)
- Fuzzy auto-completion (bash only) - Fuzzy auto-completion (bash only)
@ -149,7 +149,7 @@ installer-generated source code: `~/.fzf.bash`, `~/.fzf.zsh`, and
`fzf-tmux` script `fzf-tmux` script
----------------- -----------------
[fzf-tmux](bin/fzf-tmux) is a bash script that opens fzf in a tmux split. [fzf-tmux](bin/fzf-tmux) is a bash script that opens fzf in a tmux pane.
```sh ```sh
# usage: fzf-tmux [-h HEIGHT[%]] [-w WIDTH[%]] [--] [FZF OPTIONS] # usage: fzf-tmux [-h HEIGHT[%]] [-w WIDTH[%]] [--] [FZF OPTIONS]
@ -412,7 +412,7 @@ fzf() {
} }
``` ```
#### Using fzf with tmux splits #### Using fzf with tmux panes
The supplied [fzf-tmux](bin/fzf-tmux) script should suffice in most of the The supplied [fzf-tmux](bin/fzf-tmux) script should suffice in most of the
cases, but if you want to be able to update command line like the default cases, but if you want to be able to update command line like the default

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# fzf-tmux: starts fzf in a tmux split # fzf-tmux: starts fzf in a tmux pane
# usage: fzf-tmux [-h HEIGHT[%]] [-w WIDTH[%]] [--] [FZF OPTIONS] # usage: fzf-tmux [-h HEIGHT[%]] [-w WIDTH[%]] [--] [FZF OPTIONS]
args=() args=()

Loading…
Cancel
Save