Fork me on GitHub
#portal
<
2022-12-24
>
Eric Uitbeijerse06:12:19

Trying to run portal in VS Code (on Windows). When I use the below it opens portal in the browser instead of VS Code. Any tips on how to get it to open it inside VS Code itself?

(ns aoc22-day8.core
  (:gen-class)
  (:require [clojure.string :as str]
            [portal.api :as p]))

(def portal (p/open {:launcher :vscode}))

djblue21:12:01

I think the keyword is :vs-code

Eric Uitbeijerse23:12:17

Yep, I did install the extension and thx djblue, that did the trick (I should have checked more carefully). Thx for the help.