1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-21 06:56:43 +02:00

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

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
}