Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions home-manager/modules/xremap/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,11 @@ in
remap = terminalClipboardRemap;
}
{
# Cursor/VS Code: terminal-style clipboard shortcut, not bare Ctrl+C.
# Cursor/VS Code: standard Ctrl+C/V for copy/paste (not terminal-style Ctrl+Shift+C/V).
# The integrated terminal handles its own clipboard shortcuts internally.
name = "Framework Command (Code Editors)";
application.only = codeEditorAppIds;
remap = terminalClipboardRemap;
remap = globalRemap;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Redundant with the Global fallback: globalRemap here produces the exact same output as the unfiltered Framework Command (Global) block at line 139, so this entry no longer changes behavior for Cursor/VS Code — the Global block would catch them anyway. Not a bug (the fix is correct), but the block currently only serves as documentation of intent. Consider either dropping it or adding a comment that it's intentionally kept as a hook for future editor-specific tweaks.

}
{
# Slack: isolated block so modifier-leak / thread mark-as-read
Expand Down
Loading