@xinleibird/bridge-opencode 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bridge.ts +2 -2
  2. package/package.json +1 -1
package/bridge.ts CHANGED
@@ -103,8 +103,8 @@ export const BridgePlugin: Plugin = async ({ directory }) => {
103
103
 
104
104
  const lines = filteredSelections.map((s) => {
105
105
  const path = s.filePath.startsWith(cwd + "/")
106
- ? "@" + s.filePath.slice(cwd.length + 1)
107
- : s.filePath;
106
+ ? "- @" + s.filePath.slice(cwd.length + 1)
107
+ : "- " + s.filePath;
108
108
  return `${path}:${s.startLine}-${s.endLine}`;
109
109
  });
110
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xinleibird/bridge-opencode",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/xinleibird/bridge-opencode"