Skip to content

[FEATURE] Make chat input cancel key configurable instead of forcing <Esc> to cancel #77

Open
@jsulopzs

Description

@jsulopzs

Feature Description

Allow customizing which key cancels the chat input in claudecode.nvim, rather than hardcoding <Esc> to cancel. Ideally, <Esc> could be used to leave insert mode and enter normal mode in the chat input buffer.


Use Case

Currently, pressing <Esc> in the chat input window cancels the request entirely, which makes it impossible to switch from insert mode to normal mode in the input. Many Neovim users expect <Esc> to leave insert mode and allow normal-mode editing operations (like moving the cursor, deleting words, etc.) inside the buffer.

This feature would make the chat input behave like any other Neovim buffer and avoid accidental cancellations when trying to exit insert mode.


Proposed Solution

Add a plugin option such as:

opts = {
  cancel_key = "<C-c>",
}

Then use this key to trigger cancellation instead of always binding <Esc>.

Alternatively, allow <Esc> to switch to normal mode, and only cancel the chat if the user explicitly types another command to close it.


Alternatives Considered

  • Patching the plugin manually to change the <Esc> mapping.
  • Avoiding insert mode entirely in the chat input, but this is impractical for normal usage.
  • Using a different plugin, but claudecode.nvim fits my workflow best.

Additional Context

Other AI plugins like Copilot Chat and ChatGPT Neovim allow normal-mode editing inside their input buffers, which improves usability. Bringing similar behavior to claudecode.nvim would make the chat experience smoother for Vim users.

Thanks for considering this!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions