Files
Newton-Editor/user_config/usr/share/newton/code-key-bindings.json
itdominator 69e766dc28 feat(editor): introduce split pane manager plugin and refactor source view system
* address TODO item for split_pane_manager plugin and bound keys
* add split_pane_manager plugin with create/close split view commands
* move sibling focus/move commands from core into plugin system
* remove legacy toggle_source_view plugin
* redesign EditorsContainer to use simpler Box-based layout
* refactor source view API to return (scrolled_window, source_view)
* add source view lifecycle events (create/remove/removed)
* rename GetNewCommandSystemEvent → CreateCommandSystemEvent
* update CommandsController to support command system creation and cleanup
* ensure command systems are removed with their source views
* improve focus border handling across sibling chains
* update telescope integration for new source view structure
* clean up container imports and initialization logic
* remove old keybindings and align with new split pane workflow
2026-04-04 21:33:09 -05:00

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"
}
}
}