Skip to content

Commit 4e451be

Browse files
committed
fix: use same hints as vim-easymotion
1 parent be5f7f2 commit 4e451be

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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;')
2626
set -g @easymotion-hints 'asdfghjkl;'
2727

2828
# Border characters
2929
set -g @easymotion-vertical-border ''
3030
set -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

easymotion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from 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;')
1717
CASE_SENSITIVE = os.environ.get('TMUX_EASYMOTION_CASE_SENSITIVE', 'false').lower() == 'true'
1818
SMARTSIGN = os.environ.get('TMUX_EASYMOTION_SMARTSIGN', 'false').lower() == 'true'
1919

easymotion.tmux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ get_tmux_option() {
1414
CURRENT_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;")
1818
VERTICAL_BORDER=$(get_tmux_option "@easymotion-vertical-border" "")
1919
HORIZONTAL_BORDER=$(get_tmux_option "@easymotion-horizontal-border" "")
2020
USE_CURSES=$(get_tmux_option "@easymotion-use-curses" "false")

0 commit comments

Comments
 (0)