This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-24
Channels
- # adventofcode (25)
- # asami (39)
- # beginners (39)
- # biff (12)
- # clojure (53)
- # clojure-dev (4)
- # clojure-europe (6)
- # clojure-hungary (1)
- # clojure-norway (4)
- # clojure-spec (3)
- # conjure (2)
- # cursive (1)
- # dev-tooling (9)
- # emacs (4)
- # introduce-yourself (2)
- # juxt (4)
- # membrane (8)
- # off-topic (3)
- # polylith (8)
- # portal (4)
- # releases (1)
- # scittle (9)
- # sql (11)
- # squint (5)
- # xtdb (12)
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
Yep, I did install the extension and thx djblue, that did the trick (I should have checked more carefully). Thx for the help.