We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ca9804 commit f44aa02Copy full SHA for f44aa02
1 file changed
packages/desktop-electron/src/main/index.ts
@@ -11,6 +11,11 @@ import pkg from "electron-updater"
11
import contextMenu from "electron-context-menu"
12
contextMenu({ showSaveImageAs: true, showLookUpSelection: false, showSearchWithGoogle: false })
13
14
+// on macOS apps run in `/` which can cause issues with ripgrep
15
+try {
16
+ process.chdir(homedir())
17
+} catch {}
18
+
19
process.env.OPENCODE_DISABLE_EMBEDDED_WEB_UI = "true"
20
21
const APP_NAMES: Record<string, string> = {
0 commit comments