In ~/.tmux.conf, with
bind-key v split-window "vim"
I can launch vim in a split window.
how I can use two keys in a tmux bind-key ?
Example:
bind-key vG split-window "vim +$"
|
In
I can launch vim in a split window. how I can use two keys in a tmux
|
|||
|
|
|
You cannot. However, you might try binding "v" to an invocation of
where
Then, after typing v to get to the command prompt, you would just type "G" and press Enter. "G" would be passed as the argument to |
|||||||
|