Skip to content

Commit 836fb97

Browse files
committed
Release 1.0.0
1 parent d3a7340 commit 836fb97

File tree

4 files changed

+22
-19
lines changed

4 files changed

+22
-19
lines changed

README.md

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Open the current Obsidian file in your IDE of choice. Supports all file types in your vault (`.md`, `.base`, `.canvas`, and more). Version 0.2.0 extends support beyond markdown files, with Cursor support that reuses existing windows when possible and stages the vault before jumping to the file.
44

5-
**Current version: 0.2.0**
5+
**Current version: 1.0.0**
66

77
## ✨ Features
88
- Command palette action + optional hotkey
@@ -12,10 +12,10 @@ Open the current Obsidian file in your IDE of choice. Supports all file types in
1212

1313
## ✅ Currently supported IDEs
1414

15-
| IDE | Status | Notes |
16-
|--------|-------------------|------------------------|
17-
| Cursor | ✅ Supported | macOS tested, CLI required |
18-
| VSCode | ❌ Not supported yet | Coming soon |
15+
| IDE | Status | Notes |
16+
| ------ | ------------------- | -------------------------- |
17+
| Cursor | ✅ Supported | macOS tested, CLI required |
18+
| VSCode | ❌ Not supported yet | Coming soon |
1919
Next up: Neovim, JetBrains, and more.
2020

2121
## 🧩 Requirements
@@ -28,9 +28,13 @@ Next up: Neovim, JetBrains, and more.
2828

2929
## 🚀 Installation
3030

31-
1. Copy this folder into your vault as `Vault/.obsidian/plugins/open-in-ide`
32-
2. Enable **Open in IDE** in **Settings → Community plugins**
33-
3. Optional: assign a hotkey in **Settings → Hotkeys**
31+
1. Open **Settings****Community plugins** in Obsidian.
32+
2. Search for **Open in IDE**.
33+
3. Click **Install** and then **Enable**.
34+
35+
Alternatively, for manual installation:
36+
1. Copy `main.js` and `manifest.json` into `Vault/.obsidian/plugins/open-in-ide/`.
37+
2. Reload Obsidian and enable the plugin.
3438

3539
## 🧭 Usage
3640

@@ -41,12 +45,12 @@ Next up: Neovim, JetBrains, and more.
4145

4246
## ⚙️ Settings
4347

44-
| Setting | Description |
45-
|-------------------------|--------------------------------------------------------------|
46-
| Cursor executable path | Override the Cursor binary location |
47-
| Reuse existing window | Prefer existing Cursor windows for the vault |
48-
| Open vault before file | Ensure the vault is loaded into Cursor before the note |
49-
| Allow system fallback | Use `open` / `start` / `xdg-open` if the CLI cannot be found |
48+
| Setting | Description |
49+
| ---------------------- | ------------------------------------------------------------ |
50+
| Cursor executable path | Override the Cursor binary location |
51+
| Reuse existing window | Prefer existing Cursor windows for the vault |
52+
| Open vault before file | Ensure the vault is loaded into Cursor before the note |
53+
| Allow system fallback | Use `open` / `start` / `xdg-open` if the CLI cannot be found |
5054

5155
## 🪲 Troubleshooting
5256
- "Cursor executable not found …" → update the path or install the CLI

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "open-in-ide",
33
"name": "Open in IDE",
4-
"version": "0.2.0",
4+
"version": "1.0.0",
55
"minAppVersion": "1.5.0",
66
"description": "Open the active Obsidian file in Cursor (supports all file types including .base, .canvas, and more).",
77
"author": "Erik Carlstedt",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-in-ide",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "Obsidian plugin that opens the active note in Cursor (and future IDEs).",
55
"main": "main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
2-
"0.2.0": "1.5.0",
3-
"0.1.0": "1.5.0"
4-
}
2+
"1.0.0": "1.5.0"
3+
}

0 commit comments

Comments
 (0)