Files
Python-With-Gtk-Template/user_config/usr/share/app_name/code-key-bindings.json
itdominator 9987a1a21e refactor(code): move temp cut buffer feature and clean up related code
- Moved cut_to_temp_buffer and paste_temp_buffer commands to plugin
- Remove temporary cut buffer logic from SourceView
- Remove related keybindings (Ctrl+K / Ctrl+U)
- Fix word-end detection in ProviderResponseCacheBase to avoid extending past line end
- Improve completion controller to support RequestCompletionEvent with optional provider filtering
- Add GetActiveViewEvent handling in SourceViewsController
- Ensure view scrolls to cursor after buffer switch via GLib.idle_add
- Emit focus-in-event after DnD file load to restore focus behavior
- Prevent "buffer" pseudo-path from interfering with loaded file filtering
- Remove obsolete AGENTS.md from LSP manager plugin
2026-03-08 14:57:19 -05:00

58 lines
1.4 KiB
JSON

{
"keybindings": {
"show_completion": {
"released": "<Control>space"
},
"line_up": {
"held": "<Control>Up"
},
"line_down": {
"held": "<Control>Down"
},
"zoom_in": {
"held": "<Control>equal"
},
"zoom_out": {
"held": "<Control>minus"
},
"duplicate_line": {
"held": "<Control>d"
},
"go_to": {
"released": "<Control>g"
},
"new_file": {
"released": "<Control>t"
},
"buffer_undo": {
"held": "<Control>z"
},
"buffer_redo": {
"held": "<Control>y"
},
"open_files": {
"released": "<Control>o"
},
"close_file": {
"released": "<Control>w"
},
"save_file": {
"released": "<Control>s"
},
"save_file_as": {
"released": "<Control><Shift>s"
},
"focus_left_sibling": {
"released": "<Control>Page_Up"
},
"focus_right_sibling": {
"released": "<Control>Page_Down"
},
"move_to_left_sibling": {
"released": "<Control><Shift>Up"
},
"move_to_right_sibling": {
"released": "<Control><Shift>Down"
}
}
}