Skip to content

Commit 6632bcd

Browse files
committed
Closes #3222 adds cursor support
1 parent ae301e0 commit 6632bcd

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9+
### Added
10+
11+
- Adds [Cursor](https://cursor.so) support — closes [#3222](https://github.com/gitkraken/vscode-gitlens/issues/3222)
12+
913
### Changed
1014

1115
- Adds vscode-test to run unit-tests — closes [#3570](https://github.com/gitkraken/vscode-gitlens/issues/3570)

src/system/vscode/utils.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ export function getEditorCommand() {
7272
case 'VSCodium':
7373
editor = 'codium --wait --reuse-window';
7474
break;
75+
case 'Cursor':
76+
editor = 'cursor --wait --reuse-window';
77+
break;
7578
default:
7679
editor = 'code --wait --reuse-window';
7780
break;

0 commit comments

Comments
 (0)