Skip to content

Commit

Permalink
Merge pull request #219 from pieces-app/fix-keybindings
Browse files Browse the repository at this point in the history
fix keybindings
  • Loading branch information
bishoy-at-pieces authored Oct 14, 2024
2 parents 8fab300 + 6f0485a commit 15a9e2b
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions keybindings/Default.sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,30 @@


// KEYS
{ "keys": ["tab"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["space"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["shift+insert"], "command": "noop","context": [{"key": "pieces_copilot_add"}]},


{ "keys": ["tab"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["shift+tab"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},

{ "keys": ["backspace"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["primary+backspace"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["ctrl+backspace"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["shift+backspace"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["alt+backspace"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},

{ "keys": ["delete"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["primary+delete"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["ctrl+delete"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["shift+delete"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["alt+delete"], "command": "noop", "context": [{"key": "pieces_copilot_remove"}]},

{ "keys": ["enter"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["shift+insert"], "command": "noop","context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["shift+tab"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["shift+backspace"], "command": "noop","context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["primary+backspace"], "command": "noop","context": [{"key": "pieces_copilot_remove"}]},
{ "keys": ["primary+enter"], "command": "noop","context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["ctrl+enter"], "command": "noop","context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["shift+enter"], "command": "noop","context": [{"key": "pieces_copilot_add"}]},
{ "keys": ["alt+enter"], "command": "noop","context": [{"key": "pieces_copilot_add"}]},

// Basic keys
{ "keys": ["A"], "command": "noop", "context": [{"key": "pieces_copilot_add"}]},
Expand Down

0 comments on commit 15a9e2b

Please sign in to comment.