Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/barryceelen/claudette/llms.txt

Use this file to discover all available pages before exploring further.

Claudette does not register any global keyboard shortcuts by default to avoid conflicts with existing bindings in your editor. You can add your own shortcuts at any time through Sublime Text’s key bindings system, and a small number of shortcuts are active automatically when a chat view is focused.

Adding shortcuts

To add a keyboard shortcut for any Claudette command, open Preferences > Key Bindings. This opens a split editor with the default bindings on the left and your user bindings on the right. Add entries to the right-hand file.
1

Open key bindings

Go to Preferences > Key Bindings in the menu bar.
2

Add your binding

Edit the user key bindings file (the right pane) and add an entry for the command you want to bind.
3

Save the file

Save the file. The shortcut takes effect immediately without restarting Sublime Text.

Example: Ask Question shortcut

[
  {
    "keys": ["super+k", "super+c"],
    "command": "claudette_ask_question"
  }
]

Built-in chat view shortcuts

The following shortcuts are active automatically whenever a Claudette chat view is focused. They do not require any configuration.
KeyAction
EnterSubmit the current question (same as running Ask Question from inside the chat view)
EscapeCancel the active API request (same as Stop Request)

Command palette

The command palette gives you quick access to every Claudette command without a dedicated key binding.
PlatformShortcut
MacCmd+Shift+P
Windows / LinuxCtrl+Shift+P
Type “Claudette” after opening the palette to filter to Claudette commands.
Consider adding shortcuts for the commands you use most often. Here are good candidates along with their command IDs to use in your key bindings file.
CommandCommand ID
Ask Questionclaudette_ask_question
Ask Question In New Chat Viewclaudette_ask_new_question
Stop Requestclaudette_stop_request
Switch Modelclaudette_select_model_panel
Switch System Promptclaudette_select_system_message_panel
Switch API Keyclaudette_select_api_key_panel
Add Current File To Chatclaudette_context_add_current_file
Clear Chat Historyclaudette_clear_chat_history

Build docs developers (and LLMs) love