File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def configure(repl):
120
120
repl .enable_syntax_highlighting = True
121
121
122
122
# Get into Vi navigation mode at startup
123
- repl .vi_start_in_nav_mode = False
123
+ repl .vi_start_in_navigation_mode = False
124
124
125
125
# Preserve last used Vi input mode between main loop iterations
126
126
repl .vi_keep_last_used_mode = False
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ def __init__(
301
301
self ._get_signatures_thread_running : bool = False
302
302
303
303
# Get into Vi navigation mode at startup
304
- self .vi_start_in_nav_mode : bool = False
304
+ self .vi_start_in_navigation_mode : bool = False
305
305
306
306
# Preserve last used Vi input mode between main loop iterations
307
307
self .vi_keep_last_used_mode : bool = False
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ def pre_run(
90
90
if self .vi_keep_last_used_mode :
91
91
self .app .vi_state .input_mode = last_input_mode
92
92
93
- if not self .vi_keep_last_used_mode and self .vi_start_in_nav_mode :
93
+ if not self .vi_keep_last_used_mode and self .vi_start_in_navigation_mode :
94
94
self .app .vi_state .input_mode = InputMode .NAVIGATION
95
95
96
96
# Run the UI.
@@ -378,7 +378,7 @@ def get_locals():
378
378
configure (repl )
379
379
380
380
# Set Vi input mode
381
- if repl .vi_start_in_nav_mode :
381
+ if repl .vi_start_in_navigation_mode :
382
382
repl .app .vi_state .input_mode = InputMode .NAVIGATION
383
383
384
384
# Start repl.
You can’t perform that action at this time.
0 commit comments