What is your favorite font to use on IDEs/code editors?

Just a matter of curiosity about which fonts people here are using in their work. I used Consolas for years, now changed to Lucida Console.

πŸ‘︎ 68
πŸ’¬︎
πŸ“…︎ Dec 20 2021
🚨︎ report
Saw u/ez_pz14's meme and wanted to make my own. Apologies for the mismatching font, it drives me nuts too, but the android photo editor can only do so much i guess
πŸ‘︎ 2k
πŸ’¬︎
πŸ‘€︎ u/KoiDotJpeg
πŸ“…︎ Oct 10 2021
🚨︎ report
Show HN: I made a grid based font editor and font brutalita.com/
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/qznc_bot2
πŸ“…︎ Jan 13 2022
🚨︎ report
How to increase Unity Editor Font size on Mac OS? I am very new in Unity.... The Fonts are too small... My Eye blooded... and still didn't find any where to set the font size... Please help me!!!
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/connygy
πŸ“…︎ Nov 09 2021
🚨︎ report
I can't change the font of the text editor. The size changes, but the font itself doesn't.

My problem is described in the title. I can't get the editor to change fonts. Here's a screenshot: https://i.imgur.com/2LuN5E8.png

If I change the size of the font, that works, but the font itself doesn't change.

Also, strangely, I noticed that if I switch themes to something like One Dark Pro, the font changes to the theme's fonts.

This leaves me wondering if it has something to do with the light theme overriding my custom font choice.

Does anyone know how to solve this? I can't code without quality fonts.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/xii
πŸ“…︎ Dec 04 2021
🚨︎ report
Got a dynamic font loader / switcher working for my PyQt5-based Point&Click scene editor

Editor View - Red Arrow for Font Input Field

Context

While working on getting text graphics (QGraphicsTextItem) working for my scene editor, I debated how to approach font loading. In my dialogue editor, because there was no previewer for what the dialogue was rendering, I didn't have to load anything; I could just defer them to the engine for previewing

However, because in this editor, everything is visualized, I had to find a way of loading fonts so users could see what the engine would see

What Happened

I realized early on that the main way Qt supports font loading is through it's 'QFontDatabase' object. However, after a ton of experimenting, I found that loading fonts doesn't return you really anything about that font. No object, technically no name (you get an ID that you can use to fetch it elsewhere), and mainly, no style / emphasis (IE. Bold, Italic, etc). So, this was bad. How do I use a font a user loads from a .ttf file when I have nothing to indicate what font, or font style to use?

I ended up grabbing the Pillow module which can inspect a .ttf file for the info I needed. With that, I got loading custom .ttf fonts working

Font matching by name

While doing the above, I was wondering how to access system fonts that were already loaded. I couldn't do it through a file path, so I'd need a different mechanism. UX design tells me "don't over complicate this", so I chose to make this one entry point provide both mechanisms. I ended up doing some string parsing on the input, where (in an order of priority), if the system detects you providing a file path (using the project directory as the lookup), it runs the above code. If not, then it looks up your input in the system fonts. If found, it uses it.

To ensure the user can also provide the style (Bold, Italic, etc), I do a string.split("|", 1), which then nets me the style to look up

Summary

Fonts are hard. Mechanisms for smooth font loading are hard. Qt is hard. I'm tired and bitter now

All in all, I hope I'm wrong, and that I missed a way for Qt to let me do what I want to do. If anyone knows, please prove me wrong!

Source File:

github.com/Cronza/HeartbeatEngine/blob/dev/HBEditor/Core/Managers/font_manager.py

Repo:

[github.com/Cronza

... keep reading on reddit ➑

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Cronza
πŸ“…︎ Dec 08 2021
🚨︎ report
How to change Visual Studio 2022 Editor Font and Colors to match VS 2019

I appreciate that the Visual Studio team is continually trying to improve the VS environment for developers. However, I find the fonts and colors used in the VS 2022 editor to be too loud and mentally taxing. I'd very much like to change the VS 2022 text editor fonts and colors to match what I'm use to in VS 2019.

Unfortunately it's not a simple as going into Tools > Options > Environment > Fonts and Colors and changing the font from Cascadia Code back to Consolas. Sure one can do that, and that's a step forward but the font coloring is then too light. This is apparently because the font colors in general were lightened in VS 2022 to partially compensate for the fact that Cascadia Code is a very heavy font. This of course makes sense, IF you want to keep Cascadia Code as the editor font. But I don't. I want to switch back to Consolas, and I'd like the font coloring that VS 2019 used as well.

So anybody know an easy way to get the VS 2022 editor to use the text color coding that VS 2019 uses?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/IreliaIsLife
πŸ“…︎ Nov 18 2021
🚨︎ report
Let's choose the font color the same as the background - Yahoo news editors.
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/alacr182
πŸ“…︎ Nov 19 2021
🚨︎ report
Not the best font, but the best I could get with my photo editor
πŸ‘︎ 2k
πŸ’¬︎
πŸ‘€︎ u/SlyMaverick
πŸ“…︎ May 22 2021
🚨︎ report
How to insert google fonts for the whole document using the style editor?

To start, I should say that I'm veritably clueless as to how to write any CSS. I've consulted with multiple previous posts about font styling with no success. I imagine that what I'm asking has probably been answered a million times, and I'm genuinely sorry if I'm violating community rules and being a bother.

I want to change the fonts for all headings and paragraph text across the document. To my understanding, I'm supposed to use the style editor for that. I also read on another post on this subreddit that using google fonts is easiest.

In the style editor, I paste the import text (I use Eczar to test Eczar - Google Fonts ):

@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@800&display=swap');

By inspecting a heading, I find the following code:

.page h1, .page h2, .page h3, .page h4 {
    font-family: MrEavesRemake;
    font-weight: 800;
    color: #58180D;
}

When I dabble with the number for the color, all headings in the document change accordingly, so I try to change the font by typing the following code in the style editor:

.page h1, .page h2, .page h3, .page h4 {
    font-family: 'Eczar', serif;
    font-weight: 800;
    color: #58180D;
}

And the font does change, yet not to Eczar, but some default font. No matter what font I try to add, I get the same default result.

Furthermore, styling headings is only one of my goals - I have zero clue how to change the font for the main text paragraphs (or the notes, for that matter). I should add that I also tried changing a single heading's style in the brew editor using the curly brackets with no success.

I thank anyone generous enough with their time to help me.

πŸ‘︎ 5
πŸ’¬︎
πŸ“…︎ Oct 04 2021
🚨︎ report
My first concept ever! A color and font revamp for the default text editor, Notepad.

This was made in Illustrator. Tell me if I should make the file available here for others.

https://preview.redd.it/jarj9mp1l9i71.png?width=1920&format=png&auto=webp&s=f0d63dbd40001e9cc440b5cfda38f6082781b5ee

πŸ‘︎ 48
πŸ’¬︎
πŸ“…︎ Aug 19 2021
🚨︎ report
Please add an option to switch the post & comment editor font to monospace. To me, it’s uncomfortable to write Markdown in a proportional font.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/casperdewith
πŸ“…︎ Nov 25 2021
🚨︎ report
The trailer editors deciding which font to use on the splash screens
πŸ‘︎ 110
πŸ’¬︎
πŸ‘€︎ u/LAA9000
πŸ“…︎ Sep 03 2021
🚨︎ report
Annoyed by the font editor.

On my title page, I have a title and a subheading. I want to change the size of the font in the subheading. But for some reason, you can't just click the subheading text editor and change it. How the hell am I supposed to change it? I can change the words, make the font bold or underlined or italicized, but can't change the font itself or its size here. WTF.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/steviemcboof
πŸ“…︎ Sep 28 2021
🚨︎ report
Is there a font size option on the Script Editor?

I'd like to see more lines of code at once without having to use an external editor.

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Isaac277
πŸ“…︎ Nov 01 2021
🚨︎ report
ToneOZζΎ³θ²ι€š – Pinyin Zhuyin Editor. This is a project that uses font technology to transcript sounds as best as they could with the help of external programs, and maintaining heteronyms display when copying between documents that used the same font. Supports pinyin and zhuyin simultaneously, and free! toneoz.com/
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/NFSL2001
πŸ“…︎ Oct 09 2021
🚨︎ report
Anyone know this script/cursive font in the code editor?
πŸ‘︎ 84
πŸ’¬︎
πŸ‘€︎ u/the_fishermann
πŸ“…︎ Jun 27 2021
🚨︎ report
What is the default font of the Godot's script editor?

Edit:

The answer is "Hack", can be downloaded here.

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/lumenwrites
πŸ“…︎ Oct 13 2021
🚨︎ report
We're testing our brand editor in Espresso Tycoon - so a player could change the logo, name, or font for the whole brand. What do you think? v.redd.it/bm8hvqng7wh71
πŸ‘︎ 24
πŸ’¬︎
πŸ‘€︎ u/kindrowa
πŸ“…︎ Aug 17 2021
🚨︎ report
Suggestion: Google font preference for text editor

It'd be nice to select from Google fonts, the current one is nice but it gets hard on the eyes long term IMO

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/resplendentradish
πŸ“…︎ Sep 30 2021
🚨︎ report
Map of San Serrife, 1977, by Geoffrey Taylor. An April Fool's joke/hoax by UK newspaper The Guardian, featuring a profile, articles, & even ads about the fictional country in a seven-page supplement. All the names are font & printing jokes. People wanting to travel there complained to the editor! reddit.com/gallery/pnfout
πŸ‘︎ 32
πŸ’¬︎
πŸ‘€︎ u/YanniRotten
πŸ“…︎ Sep 13 2021
🚨︎ report
Font Editor Is Being Weird: No way to change font, italicize, bold...
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/simlando9876
πŸ“…︎ Oct 05 2021
🚨︎ report
What theme and font do you use on your jetbrains editor?

Spent way too long customizing things and trying themes, now settled on the combination of the Dracula Colorful theme, and Incosolata as a font.

Also, I found it weird to have conflicts with macOS shortcuts by default, certain shortcuts are conflicted with other IDE ones right from the get go !

What are your settings?

πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/aselfaccount
πŸ“…︎ Jun 11 2021
🚨︎ report
st shows font correctly but not inside editors

I installed st and patched it with font2 (https://st.suckless.org/patches/font2/) in order to add a few backup fonts and be able to show Font Awesome icons properly.

This seems to work, for example I have a python script that outputs the current Spotify song and uses the Spotify icon from Font Awesome, see image here: https://i.imgur.com/CtsjrpZ.png

However, when I open that script with any editor using the terminal, e.g. Vim or Nano, the icon is not shown, see image: https://i.imgur.com/yVqYOZi.png

Does anyone know what could be happening here? Happy to provide more information/context if needed

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/leCarlosMenem
πŸ“…︎ Jul 28 2021
🚨︎ report
Change terminal/editor font

How do I change my terminal/editor (vim/nvim) font from a .ttf file?

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Hex166
πŸ“…︎ Sep 07 2021
🚨︎ report
Is it possible to change the app font, not just the editor?

I would like to change to font for other parts of the app besides the editor. I've google for a solution but I can't find one. I think there's some hacks to do this but I don't really want to do it that way. Is there a setting hidden somewhere to change this or is it not possible?

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/TastyStatistician
πŸ“…︎ Jun 28 2021
🚨︎ report
Pixlr is an online photo editor that lets you add local fonts

https://pixlr.com/

There is an "Add Local Font" button at the bottom of the font selection list.

So you can download the Shavian fonts locally and then use them in image edits.

πŸ‘︎ 7
πŸ’¬︎
πŸ“…︎ Aug 16 2021
🚨︎ report
Calligro is an open source tool for generating Godot compatible fonts from images drawn in any editor like Gimp or Aseprite
πŸ‘︎ 559
πŸ’¬︎
πŸ‘€︎ u/Voycawojka
πŸ“…︎ Feb 27 2021
🚨︎ report
Chrome DevTools: Easily control typography with the CSS Font Editor umaar.com/dev-tips/244-fo…
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/speckz
πŸ“…︎ Aug 09 2021
🚨︎ report
Chrome DevTools: Easily control typography with the CSS Font Editor umaar.com/dev-tips/244-fo…
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/speckz
πŸ“…︎ Aug 09 2021
🚨︎ report
Seeing as we have a lack of 140s from the cruicible i thought i would make one. Couldn't find the destiny font in the editor i used though. (
πŸ‘︎ 37
πŸ’¬︎
πŸ‘€︎ u/storkval
πŸ“…︎ Apr 12 2021
🚨︎ report
Broken Font/Language on Popup window Unreal Editor Linux Build (Manjaro/Arch)

Hi! So, I'm having troubles migrating from windows, trying to open my project but can't progress in that because of this weird error. I tried to find on google if anyone else had this exact issue but couldn't so that's why I'm asking here. Has anyone else encountered this issue? How did you fix it?

To clarify, it's 4.26 branch, up to date. Built with latest cmake and clang (cuz arch), had no errors in the process of compilation. Text is fine while in the Editor and in any project, only this specific popup window scenario is the problem. (Problem occured on both KDE Plasma and XFCE4)

Thank you!

Title is ok but the description is in some other weird language or the encoding is broken, idk. Same happens with any other error message (plugins not found for example as well)

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/tukanoid
πŸ“…︎ Jul 17 2021
🚨︎ report
Beginner editor looking for open source fonts websites

I was just wondering if you lovely people could direct me to a good website for browsing and window-shopping open source fonts! Thank you in advance and sorry if this isn't the place to ask! <3

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Ashynisty
πŸ“…︎ May 14 2021
🚨︎ report
Hot key to change font size, NOT window.zoomLevel NOR editor.action.fontZoomOut/In??

Seems like there's so many different ways to change how big the UI is in VSCode. What I want is a hotkey to change the font size. It seems ctrl + = / ctrl + - change the font zoom level, but this is not the same as the font size. This is editor.action.fontZoomIn or editor.action.fontZoomOut. But I want to easily change the value of editor.fontSize.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Missing_Back
πŸ“…︎ Aug 03 2021
🚨︎ report
Demo: Drawing glyphs with variable width strokes using free software font editor MFEK (MFEKglif) youtube.com/watch?v=Kc2Jw…
πŸ‘︎ 79
πŸ’¬︎
πŸ‘€︎ u/ctrlcctrlv-
πŸ“…︎ Mar 22 2021
🚨︎ report
A better text editor in Thundebird (better font sizes control) ?

As a longtime Thunderbird user, I am still very frustrated by its text editor.
Especially the font sizes, which I find kinda dumb and difficult to control. It has only 5 options (very small, small, medium, big, very big) and when I copy paste a text from somewhere else, 50% of the time it is all messed up and I can't get it to the right font size.

Anyway, am I missing something ?
How can I get a regular text editor, with normal font size selector (10, 12, etc.) ?

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/gamasco
πŸ“…︎ May 24 2021
🚨︎ report
I would have made this meme in the Oswald font but my image editor didn't have it lol
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/Zcoedy
πŸ“…︎ May 04 2021
🚨︎ report
Could someone please identify this font (text editor monospace) reddit.com/gallery/nou08c
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/baked__shrimp
πŸ“…︎ May 31 2021
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.