Skip to content

Commit 8dcadf7

Browse files
authored
Merge pull request #101 from grimmerk/style/title-asterisk
style: use * for custom title separator
2 parents b417b90 + cbf60d7 commit 8dcadf7

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.66
4+
5+
- Style: use `*` separator for custom titles (matches Claude Code display)
6+
37
## 1.0.65
48

59
- Style: remove quotes around custom session titles (color already distinguishes them)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "CodeV",
33
"productName": "CodeV",
4-
"version": "1.0.65",
4+
"version": "1.0.66",
55
"description": "Quick switcher for VS Code, Cursor, and Claude Code sessions",
66
"repository": {
77
"type": "git",

src/switcher-ui.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ function SwitcherApp() {
10021002
</span>
10031003
{customTitles[session.sessionId] && (
10041004
<span style={{ color: '#7ec87e', fontSize: '13px', fontWeight: '500' }}>
1005-
{' '}· <Highlighter
1005+
{' '}* <Highlighter
10061006
searchWords={sessionSearchValue.split(/\s+/).filter(Boolean)}
10071007
textToHighlight={customTitles[session.sessionId].slice(0, 35)}
10081008
highlightStyle={{

0 commit comments

Comments
 (0)