* remove toggle_source_view plugin and related command implementations * drop built-in sibling focus/move commands from core * simplify EditorsContainer (Paned → Box) and editor initialization * refactor source view creation to return (scrolled_window, source_view) * add source view lifecycle events (remove/removed) * rename GetNewCommandSystemEvent → CreateCommandSystemEvent * update CommandsController to handle command system creation and cleanup * ensure command systems are removed with their source views * improve focus border handling across sibling chains * clean up imports to use absolute core.* paths * update keybindings to remove deprecated split navigation commands
49 lines
1.1 KiB
JSON
49 lines
1.1 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"
|
|
},
|
|
"toggle_plugins_ui": {
|
|
"released": "<Control><Shift>p"
|
|
}
|
|
}
|
|
} |