clean up emacs/vi action keys

This commit is contained in:
Jorge Morante 2016-07-14 22:46:07 +02:00
parent 51f69c83fe
commit a44868a68f
1 changed files with 1 additions and 3 deletions

View File

@ -18,7 +18,7 @@ function start_selection() {
function top_of_buffer() {
if [ "$TMUX_COPY_MODE" == "vi" ]; then
tmux send-keys "h"
tmux send-keys "H"
else
tmux send-keys "M-R"
fi
@ -43,8 +43,6 @@ function end_of_line() {
function cursor_left() {
if [ "$TMUX_COPY_MODE" == "vi" ]; then
tmux send-keys "h"
else
tmux send-keys "Left"
fi
}