Skip to main content

Command Palette

Search for a command to run...

VS Code: Simple Browser

Updated
1 min read
VS Code: Simple Browser
B

I like programming (at work) and learning for fun. You'll often find me cooking and working on my house in my spare time.

Updated September 16, 2025 to indicate that Flares have a singleton mode as explained by PEZ.

I just learned about Calva Flares. Then I wondered, is there something built into VS Code for viewing webpages? There is! It’s called Simple Browser and was added way back in 2021!

For my use case of viewing the Clojure Cheatsheet without leaving VS Code, all I have to do is:

Open the Command Palette and select Simple Browser: Show

Type or paste in the URL

And the page appears!

Simple Browser beats out Flares by having an address bar, back, forward, reload, and open in browser controls. But, Simple Browser is a singleton.

With Flares, I can open as many as I want, and I can have a singleton in the sidebar if I add the key-value pair :sidebar-panel? true.

It’s nice to have options!

P

Simple Browser is cool! Flares also have the advantage that you can open them in a side panel view. At least a singleton.

1
B

Wow, thanks for dropping by! I couldn't quite figure that out. I added the key and value :sidebar-panel true to my example in https://brettrowberry.com/calva-flares and didn't notice a change in behavior.

1
P

Maybe you forgot the ? in : :sidebar-panel?

B

Yes, you solved the mystery! https://github.com/BetterThanTomorrow/calva/pull/2922

1
P

Ah, thanks for fixing it!

1
B

Article updated.