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