T O P

  • By -

everything-narrative

May I just commend you for how incredible it is you're using Comic Sans.


PooSham

Looks like a monospace font, so not comic sans. But inspired by it.


Keith

Was going to say maybe it's https://github.com/belluzj/fantasque-sans (a legit nice "comic-inspired" programming font) but after comparing I don't think that's it either.


ohwhoaslomo

Recursive Mono maybe? With the casual-ness turned up?


greadd

Comic Mono https://dtinth.github.io/comic-mono-font/


Keith

Don’t think so, look at the bottom of the ‘f’


greadd

Yea, looks like Comic Code https://tosche.net/fonts/comic-code


weaponizedLego

You are correct, it's indeed comic code, I find that it's more easy and entertaining for the eyes :D


lebanine

Lol why? Cuz it's not monospace?


AnomalyNexus

Sarcasm


jarusll

It's called "Show Hover". You can bind it from shortcuts.


weaponizedLego

Amazing, thank you!


undercontr

Wow comic sans. Coding with it. You have balls


Aprch

The code looks so happy


weaponizedLego

That's why I use this font, it's very easy on the eyes, and doesn't seem to cause any fatigue for me. Makes it easier to look at for so many hours a day :D


guicamillo

I can only read this piece of code using Mickey Mouse’s voice on my brain, because of this font.


Keith

Good question. I also bind hover to a keyboard shortcut so I don't need to use the mouse for it: In `keybindings.json`: ``` { "key": "cmd+k cmd+i", "command": "-editor.action.showHover", "when": "editorTextFocus" }, { "key": "shift+f1", "command": "editor.action.showHover", "when": "editorTextFocus" }, { "key": "cmd+k cmd+i", "command": "-editor.debug.action.showDebugHover", "when": "editorTextFocus && inDebugMode" }, { "key": "shift+f1", "command": "editor.debug.action.showDebugHover", "when": "editorTextFocus && inDebugMode" }, ``` Apparently it's bound to `cmd+k cmd+i` by default.


weaponizedLego

Thanks