-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mix & Match? 😢 #30
Comments
I'm also looking for this. In the way "Operator Mono" or "Victor Mono" does it anyway, awesome work, awesome project ❤️ ⭐ thanks to anyone involved in this 👏 |
This is not possible to implement in the font, it needs to be implemented in VS Code (or whatever editor you're using). VS Code already allows making certain scopes italic or bold, only the font family isn't configurable yet. |
in VSCode, this is doable if you install the APC extension and provide a custom stylesheet. E. g., to use Radon for comments: .mtk5 {
font-family: "Monaspace Radon Var";
} (look up specific classes using dev tools) |
Has anyone found the class for copilot suggestions? Whenever I click on the eyedropper to find it, the suggestion goes away. |
@kcoderhtml the class for an Copilot inline suggestion is You can inspect transient DOM elements by e.g. halting the app with a setTimeout(() => { debugger; }, 10000); |
I've seen this done before. IIRC it was Cascadia Code who had a cursive font for their italics. |
Helpful thread... My current settings for MacOS APC extension. Radon comments and Thin Krypton Copilot "apc.stylesheet": {
".mtk3": "font-family: 'Monaspace Radon Var'; font-weight: 500;",
".ghost-text-decoration, .ghost-text-decoration-preview": "font-family: 'Monaspace Krypton Var'; font-weight: 200;"
} |
Just curious, can I enable such feature in neovim? |
🤩 thank you. This worked for me. |
Thanks! BTW 'var' is not needed for macOS users. Just use |
@kcoderhtml OOB, you can control the font for code blocks the AI suggests in chat with the following settings: chat.editor.fontFamily
chat.editor.fontSize
chat.editor.fontWeight
chat.editor.lineHeight I assume typing |
Hi @WindSoilder, here's a workaround I made: monaspace.nvim if you are still interested and can't wait to try it out! |
Hello!
This is somehow related to #6 but I would like to ask for a more generic one, I know some monospaced fonts are capable of mixing standard monospaced and handwritten style when the text is in comment block (probably they just change the italic variant?).
Could be build monaspace to allow that?
In my specific case, I would like to
Argon
for my code andRadon
for my comments 🙏Thanks for your awesome work ❤️
The text was updated successfully, but these errors were encountered: