Show More
@@ -229,7 +229,7 b' AUTO_SUGGEST_BINDINGS = [' | |||
|
229 | 229 | ), |
|
230 | 230 | Binding( |
|
231 | 231 | auto_suggest.swap_autosuggestion_up, |
|
232 | ["up"], | |
|
232 | ["c-up"], | |
|
233 | 233 | "navigable_suggestions" |
|
234 | 234 | " & ~has_line_above" |
|
235 | 235 | " & has_suggestion" |
@@ -237,7 +237,7 b' AUTO_SUGGEST_BINDINGS = [' | |||
|
237 | 237 | ), |
|
238 | 238 | Binding( |
|
239 | 239 | auto_suggest.swap_autosuggestion_down, |
|
240 | ["down"], | |
|
240 | ["c-down"], | |
|
241 | 241 | "navigable_suggestions" |
|
242 | 242 | " & ~has_line_below" |
|
243 | 243 | " & has_suggestion" |
@@ -245,12 +245,12 b' AUTO_SUGGEST_BINDINGS = [' | |||
|
245 | 245 | ), |
|
246 | 246 | Binding( |
|
247 | 247 | auto_suggest.up_and_update_hint, |
|
248 | ["up"], | |
|
248 | ["c-up"], | |
|
249 | 249 | "has_line_above & navigable_suggestions & default_buffer_focused", |
|
250 | 250 | ), |
|
251 | 251 | Binding( |
|
252 | 252 | auto_suggest.down_and_update_hint, |
|
253 | ["down"], | |
|
253 | ["c-down"], | |
|
254 | 254 | "has_line_below & navigable_suggestions & default_buffer_focused", |
|
255 | 255 | ), |
|
256 | 256 | Binding( |
@@ -265,8 +265,8 b' AUTO_SUGGEST_BINDINGS = [' | |||
|
265 | 265 | ), |
|
266 | 266 | Binding( |
|
267 | 267 | auto_suggest.accept_and_keep_cursor, |
|
268 |
[" |
|
|
269 |
"has_suggestion & default_buffer_focused & emacs_ |
|
|
268 | ["escape", "down"], | |
|
269 | "has_suggestion & default_buffer_focused & emacs_insert_mode", | |
|
270 | 270 | ), |
|
271 | 271 | Binding( |
|
272 | 272 | auto_suggest.backspace_and_resume_hint, |
General Comments 0
You need to be logged in to leave comments.
Login now