File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -22,27 +22,27 @@ Press `prefix` + `I` to install
2222### Options:
2323
2424``` bash
25- # Keys used for hints (default: 'asdfghjkl ;')
25+ # Keys used for hints (default: 'asdghklqwertyuiopzxcvbnmfj ;')
2626set -g @easymotion-hints ' asdfghjkl;'
2727
2828# Border characters
2929set -g @easymotion-vertical-border ' │'
3030set -g @easymotion-horizontal-border ' ─'
3131
3232# Use curses instead of ansi escape sequences (default: false)
33- set -g @easymotion-use-curses ' false '
33+ set -g @easymotion-use-curses ' true '
3434
3535# Debug mode - writes debug info to ~/easymotion.log (default: false)
36- set -g @easymotion-debug ' false '
36+ set -g @easymotion-debug ' true '
3737
3838# Performance logging - writes timing info to ~/easymotion.log (default: false)
39- set -g @easymotion-perf ' false '
39+ set -g @easymotion-perf ' true '
4040
4141# Case sensitive search (default: false)
42- set -g @easymotion-case-sensitive ' false '
42+ set -g @easymotion-case-sensitive ' true '
4343
4444# Enable smartsign feature (default: false)
45- set -g @easymotion-smartsign ' false '
45+ set -g @easymotion-smartsign ' true '
4646```
4747
4848
Original file line number Diff line number Diff line change 1313from typing import List , Optional
1414
1515# Configuration from environment
16- HINTS = os .environ .get ('TMUX_EASYMOTION_HINTS' , 'asdfghjkl ;' )
16+ HINTS = os .environ .get ('TMUX_EASYMOTION_HINTS' , 'asdghklqwertyuiopzxcvbnmfj ;' )
1717CASE_SENSITIVE = os .environ .get ('TMUX_EASYMOTION_CASE_SENSITIVE' , 'false' ).lower () == 'true'
1818SMARTSIGN = os .environ .get ('TMUX_EASYMOTION_SMARTSIGN' , 'false' ).lower () == 'true'
1919
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ get_tmux_option() {
1414CURRENT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
1515
1616# Define all options and their default values
17- HINTS=$( get_tmux_option " @easymotion-hints" " asdfghjkl ;" )
17+ HINTS=$( get_tmux_option " @easymotion-hints" " asdghklqwertyuiopzxcvbnmfj ;" )
1818VERTICAL_BORDER=$( get_tmux_option " @easymotion-vertical-border" " │" )
1919HORIZONTAL_BORDER=$( get_tmux_option " @easymotion-horizontal-border" " ─" )
2020USE_CURSES=$( get_tmux_option " @easymotion-use-curses" " false" )
You can’t perform that action at this time.
0 commit comments