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}))Did you install the Code extension? https://marketplace.visualstudio.com/items?itemName=djblue.portal
I think the keyword is :vs-code
Yep, I did install the extension and thx djblue, that did the trick (I should have checked more carefully). Thx for the help.