Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.0.61

- Fix: terminal cursor β€” white non-blinking block (matching iTerm2 style)
- Feat: Cmd+K clears terminal screen
- Feat: Shift+Enter sends newline in terminal (for Claude Code multi-line input)

## 1.0.60

- Fix: terminal cd uses ~ shorthand + clear for cleaner output
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "CodeV",
"productName": "CodeV",
"version": "1.0.60",
"version": "1.0.61",
"description": "Quick switcher for VS Code, Cursor, and Claude Code sessions",
"repository": {
"type": "git",
Expand Down
7 changes: 5 additions & 2 deletions src/terminal-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ const TerminalTab = ({ visible }: { visible: boolean }) => {
theme: {
background: '#1e1e1e',
foreground: '#e9e9e9',
cursor: '#00BCD4',
cursor: '#C0C0C0',
selectionBackground: 'rgba(0, 188, 212, 0.3)',
},
cursorBlink: true,
cursorBlink: false,
allowProposedApi: true,
});

Expand All @@ -39,6 +39,9 @@ const TerminalTab = ({ visible }: { visible: boolean }) => {
// Cmd+←/β†’ β†’ beginning/end of line
if (e.type === 'keydown' && e.metaKey && e.key === 'ArrowLeft') { term.input('\x01'); return false; }
if (e.type === 'keydown' && e.metaKey && e.key === 'ArrowRight') { term.input('\x05'); return false; }
if (e.type === 'keydown' && e.metaKey && e.key === 'k') { term.clear(); return false; }
// Shift+Enter β†’ Ctrl+J (line feed) for Claude Code multi-line input
if (e.shiftKey && e.key === 'Enter') { if (e.type === 'keydown') term.input('\x0a'); return false; }
return true;
});

Expand Down