Fork me on GitHub
#portal
<
2022-01-13
>
Jakub Holý (HolyJak)21:01:36

Hello! I have installed the VS Code extension and started portal with

(do
    (require '[portal.api :as p])
    (def p (p/open {:launcher :vs-code})))
which opened the window. I then do
(tap> "hello")
; => true
but nothing shows up in Portal?! What am I doing wrong / how to troubleshoot?

djblue21:01:46

You also need to do (add-tap #'p/submit)

🙏 1
seancorfield23:01:35

@holyjak I don't know whether you're using Clover but, if so, I have a customization that starts Portal and adds some functions I've found useful https://github.com/seancorfield/vscode-clover-setup/blob/develop/config.cljs#L272-L297

seancorfield23:01:51

Then I have that bound to ctrl-; shift-p 🙂

💯 1