Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ To launch files, send requests to the server like the following:
| `code-insiders` | [Visual Studio Code Insiders](https://code.visualstudio.com/insiders/) | ✓ | ✓ | ✓ |
| `codium` | [VSCodium](https://github.com/VSCodium/vscodium) | ✓ | ✓ | ✓ |
| `cursor` | [Cursor](https://www.cursor.com/) | ✓ | ✓ | ✓ |
| `windsurf` | [Windsurf](https://windsurf.ai/) | ✓ | ✓ | ✓ |
| `emacs` | [Emacs](https://www.gnu.org/software/emacs/) | ✓ | | |
| `idea` | [IDEA](https://www.jetbrains.com/idea/) | ✓ | ✓ | ✓ |
| `notepad++` | [Notepad++](https://notepad-plus-plus.org/download/v7.5.4.html) | | ✓ | |
Expand Down
1 change: 1 addition & 0 deletions packages/launch-editor/editor-info/linux.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ module.exports = {
rider: 'rider',
'rider.sh': 'rider',
zed: 'zed',
windsurf: 'windsurf'
}
4 changes: 3 additions & 1 deletion packages/launch-editor/editor-info/macos.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ module.exports = {
'/Applications/MacVim.app/Contents/MacOS/MacVim': 'mvim',
'/Applications/GoLand.app/Contents/MacOS/goland':
'/Applications/GoLand.app/Contents/MacOS/goland',
'/Applications/Rider.app/Contents/MacOS/rider': '/Applications/Rider.app/Contents/MacOS/rider',
'/Applications/Rider.app/Contents/MacOS/rider':
'/Applications/Rider.app/Contents/MacOS/rider',
'/Applications/Zed.app/Contents/MacOS/zed': 'zed',
'/Applications/Windsurf.app/Contents/MacOS/Windsurf': 'windsurf'
}
1 change: 1 addition & 0 deletions packages/launch-editor/editor-info/windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ module.exports = [
'Trae.exe',
'zed.exe',
'Antigravity.exe',
'Windsurf.exe'
]
1 change: 1 addition & 0 deletions packages/launch-editor/get-args.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ module.exports = function getArgumentsForPosition(editor, fileName, lineNumber,
case 'cursor':
case 'vscodium':
case 'VSCodium':
case 'windsurf':
return ['-r', '-g', `${fileName}:${lineNumber}:${columnNumber}`]
case 'appcode':
case 'clion':
Expand Down