Skip to content

Commit

Permalink
fix keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
bishoy-at-pieces committed Oct 16, 2024
1 parent 15a9e2b commit 7533214
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 21 deletions.
13 changes: 6 additions & 7 deletions keybindings/Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[
// all Key Chords should begin with ctrl+p (for Pieces)
{
"command": "pieces_ask_question", // Ask copilot in the context menu to fix a bug
"args": {"task": "fix"},
Expand All @@ -16,30 +15,30 @@
"keys": ["ctrl+shift+alt+c"]
},
{
"keys": ["ctrl+p","ctrl+l"], // Pieces: Open Saved Material
"keys": ["ctrl+shift+p"], // Pieces: Open Saved Material
"command": "pieces_list_assets"
},
{
"keys": ["ctrl+p","ctrl+s"], // Pieces: Search
"keys": ["ctrl+shift+alt+s"], // Pieces: Search
"command": "pieces_search"
},
{
"keys": ["ctrl+p","ctrl+o"], // Pieces: Open Pieces OS
"keys": ["ctrl+shift+o"], // Pieces: Open Pieces OS
"command": "pieces_open_pieces"
},
{
"keys": ["ctrl+p","ctrl+c"], // Pieces: Manage Conversation Context
"keys": ["shift+alt+c"], // Pieces: Manage Conversation Context
"command": "pieces_context_manager"
},
{
"keys": ["ctrl+p","ctrl+f"], // Pieces: Ask about the current file
"keys": ["ctrl+alt+f"], // Pieces: Ask about the current file
"command": "pieces_ask_stream_about",
"args": {
"type": "file"
}
},
{
"keys": ["ctrl+p","ctrl+i"], // Pieces: Ask about the current project
"keys": ["ctrl+shift+i"], // Pieces: Ask about the current project
"command": "pieces_ask_stream_about",
"args": {
"type": "folder"
Expand Down
13 changes: 6 additions & 7 deletions keybindings/Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[
// all Key Chords should begin with command+p (for Pieces)
{
"command": "pieces_ask_question", // Ask copilot in the context menu to fix a bug
"args": {"task": "fix"},
Expand All @@ -16,30 +15,30 @@
"keys": ["command+shift+option+c"]
},
{
"keys": ["command+p","command+l"], // Pieces: Open Saved Material
"keys": ["command+shift+p"], // Pieces: Open Saved Material
"command": "pieces_list_assets"
},
{
"keys": ["command+p","command+s"], // Pieces: Search
"keys": ["command+shift+option+s"], // Pieces: Search
"command": "pieces_search"
},
{
"keys": ["command+p","command+o"], // Pieces: Open Pieces OS
"keys": ["command+shift+o"], // Pieces: Open Pieces OS
"command": "pieces_open_pieces"
},
{
"keys": ["command+p","command+c"], // Pieces: Manage Conversation Context
"keys": ["shift+option+c"], // Pieces: Manage Conversation Context
"command": "pieces_context_manager"
},
{
"keys": ["command+p","command+f"], // Pieces: Ask about the current file
"keys": ["command+option+f"], // Pieces: Ask about the current file
"command": "pieces_ask_stream_about",
"args": {
"type": "file"
}
},
{
"keys": ["command+p","command+i"], // Pieces: Ask about the current project
"keys": ["command+shift+i"], // Pieces: Ask about the current project
"command": "pieces_ask_stream_about",
"args": {
"type": "folder"
Expand Down
13 changes: 6 additions & 7 deletions keybindings/Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[
// all Key Chords should begin with ctr+p (for Pieces)
{
"command": "pieces_ask_question", // Ask copilot in the context menu to fix a bug
"args": {"task": "fix"},
Expand All @@ -16,30 +15,30 @@
"keys": ["ctrl+shift+alt+c"]
},
{
"keys": ["ctrl+p","ctrl+l"], // Pieces: Open Saved Material
"keys": ["ctrl+shift+p"], // Pieces: Open Saved Material
"command": "pieces_list_assets"
},
{
"keys": ["ctrl+p","ctrl+s"], // Pieces: Search
"keys": ["ctrl+shift+alt+s"], // Pieces: Search
"command": "pieces_search"
},
{
"keys": ["ctrl+p","ctrl+o"], // Pieces: Open Pieces OS
"keys": ["ctrl+shift+o"], // Pieces: Open Pieces OS
"command": "pieces_open_pieces"
},
{
"keys": ["ctrl+p","ctrl+c"], // Pieces: Manage Conversation Context
"keys": ["shift+alt+c"], // Pieces: Manage Conversation Context
"command": "pieces_context_manager"
},
{
"keys": ["ctrl+p","ctrl+f"], // Pieces: Ask about the current file
"keys": ["ctrl+alt+f"], // Pieces: Ask about the current file
"command": "pieces_ask_stream_about",
"args": {
"type": "file"
}
},
{
"keys": ["ctrl+p","ctrl+i"], // Pieces: Ask about the current project
"keys": ["ctrl+shift+i"], // Pieces: Ask about the current project
"command": "pieces_ask_stream_about",
"args": {
"type": "folder"
Expand Down

0 comments on commit 7533214

Please sign in to comment.