Skip to repository content73 lines · 2.2 KB · json
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:31:32.169Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
vscode.json
1[
2 // VS Code for Linux (and Windows). See: https://code.visualstudio.com/docs/reference/default-keybindings
3 //
4 // Omega's default keymap is close to VS Code's, so this overlay only contains
5 // the bindings where the two diverge.
6 {
7 "context": "Editor",
8 "use_key_equivalents": true,
9 "bindings": {
10 "shift-alt-f": "editor::Format", // Format Document (Windows-style; Linux `ctrl-shift-i` is a Omega default already)
11 "ctrl-k ctrl-f": "editor::FormatSelections", // Format Selection
12 "shift-alt-i": "editor::SplitSelectionIntoLines", // Insert cursor at end of each line selected
13 "alt-z": "editor::ToggleSoftWrap", // Toggle Word Wrap
14 "ctrl-shift-space": "editor::ShowSignatureHelp", // Trigger Parameter Hints
15 "ctrl-shift-a": "editor::ToggleBlockComments", // Toggle Block Comment
16 "ctrl-k f12": "editor::GoToDefinitionSplit", // Open Definition to the Side
17 },
18 },
19 {
20 "context": "Editor && mode == full",
21 "use_key_equivalents": true,
22 "bindings": {
23 // In VS Code `ctrl-k z` is Zen Mode; the word wrap toggle moves to `alt-z`.
24 "ctrl-k z": "workspace::ToggleCenteredLayout",
25 "ctrl-i": "assistant::InlineAssist", // Inline Chat
26 },
27 },
28 {
29 "context": "!AcpThread > Editor && mode == full",
30 "use_key_equivalents": true,
31 "bindings": {
32 "ctrl-enter": "editor::NewlineBelow", // Insert Line Below (Inline Chat lives on `ctrl-i`)
33 },
34 },
35 {
36 "context": "Terminal",
37 "use_key_equivalents": true,
38 "bindings": {
39 "ctrl-enter": null,
40 },
41 },
42 {
43 "context": "Workspace",
44 "use_key_equivalents": true,
45 "bindings": {
46 "f5": "debugger::Start", // Start Debugging
47 "ctrl-alt-i": "agent::ToggleFocus", // Open Chat
48 },
49 },
50 {
51 "context": "Workspace && debugger_running",
52 "use_key_equivalents": true,
53 "bindings": {
54 "f5": null,
55 },
56 },
57 {
58 "context": "Workspace && debugger_stopped",
59 "use_key_equivalents": true,
60 "bindings": {
61 "f5": "debugger::Continue",
62 },
63 },
64 {
65 "context": "Workspace && debugger_session",
66 "use_key_equivalents": true,
67 "bindings": {
68 "f10": "debugger::StepOver",
69 "f11": "debugger::StepInto",
70 },
71 },
72]
73