How can I determine what font faces are available for me to use with Sublime Text 3? The 2019...
Are there any other methods to apply to solving simultaneous equations?
Did 3000BC Egyptians use meteoric iron weapons?
Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?
Loose spokes after only a few rides
For what reasons would an animal species NOT cross a *horizontal* land bridge?
How can I autofill dates in Excel excluding Sunday?
During Temple times, who can butcher a kosher animal?
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
Can someone be penalized for an "unlawful" act if no penalty is specified?
Does a dangling wire really electrocute me if I'm standing in water?
What is the meaning of Triage in Cybersec world?
Time travel alters history but people keep saying nothing's changed
Falsification in Math vs Science
Multiply Two Integer Polynomials
How to save as into a customized destination on macOS?
Is there any way to tell whether the shot is going to hit you or not?
What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?
Earliest use of the term "Galois extension"?
Delete all lines which don't have n characters before delimiter
Lightning Grid - Columns and Rows?
Origin of "cooter" meaning "vagina"
Shouldn't "much" here be used instead of "more"?
Can we generate random numbers using irrational numbers like π and e?
Why do UK politicians seemingly ignore opinion polls on Brexit?
How can I determine what font faces are available for me to use with Sublime Text 3?
The 2019 Stack Overflow Developer Survey Results Are InFind symbolic link created for Sublime text 2 to replace with Sublime Text 3Where Should I Set Environmental Variables For Use By Sublime Text 3Cyrillic characters in Sublime Text 3 with Terminus fontSafari disallow the use of certain @font-facesSublime Text 3 Package Control: “… not available” error message for a non-existent packageHow to use Sublime Text 3's mousemap settings?How to add or edit autocompletions in Sublime text 3?What does the “no_round” font option in Sublime Text do?Replacing notepad.exe with sublime textWhere to find the “bulma snippets” for Sublime Text 3?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I would like to change the font face in Sublime Text.
How can I see what options are available for me to change it to?
macos osx-mavericks sublime-text-3 font-faces
add a comment |
I would like to change the font face in Sublime Text.
How can I see what options are available for me to change it to?
macos osx-mavericks sublime-text-3 font-faces
Sublime Text can use the same fonts as on your OS
– slhck
Dec 26 '13 at 16:41
Great. How can I determine what fonts are available on my OS, which is Mac - Mavericks, incidentally.
– jononomo
Dec 26 '13 at 16:46
Answering my own question - on Mac, use the Font Book app.
– jononomo
Dec 26 '13 at 16:51
add a comment |
I would like to change the font face in Sublime Text.
How can I see what options are available for me to change it to?
macos osx-mavericks sublime-text-3 font-faces
I would like to change the font face in Sublime Text.
How can I see what options are available for me to change it to?
macos osx-mavericks sublime-text-3 font-faces
macos osx-mavericks sublime-text-3 font-faces
edited Dec 26 '13 at 16:49
slhck
163k47451476
163k47451476
asked Dec 26 '13 at 16:37
jononomojononomo
197112
197112
Sublime Text can use the same fonts as on your OS
– slhck
Dec 26 '13 at 16:41
Great. How can I determine what fonts are available on my OS, which is Mac - Mavericks, incidentally.
– jononomo
Dec 26 '13 at 16:46
Answering my own question - on Mac, use the Font Book app.
– jononomo
Dec 26 '13 at 16:51
add a comment |
Sublime Text can use the same fonts as on your OS
– slhck
Dec 26 '13 at 16:41
Great. How can I determine what fonts are available on my OS, which is Mac - Mavericks, incidentally.
– jononomo
Dec 26 '13 at 16:46
Answering my own question - on Mac, use the Font Book app.
– jononomo
Dec 26 '13 at 16:51
Sublime Text can use the same fonts as on your OS
– slhck
Dec 26 '13 at 16:41
Sublime Text can use the same fonts as on your OS
– slhck
Dec 26 '13 at 16:41
Great. How can I determine what fonts are available on my OS, which is Mac - Mavericks, incidentally.
– jononomo
Dec 26 '13 at 16:46
Great. How can I determine what fonts are available on my OS, which is Mac - Mavericks, incidentally.
– jononomo
Dec 26 '13 at 16:46
Answering my own question - on Mac, use the Font Book app.
– jononomo
Dec 26 '13 at 16:51
Answering my own question - on Mac, use the Font Book app.
– jononomo
Dec 26 '13 at 16:51
add a comment |
1 Answer
1
active
oldest
votes
From your Finder, open Applications » Font Book.app. It will show you a list of all fonts installed on your system:
You can use all of these in Sublime Text (however you may want try only Fixed Width fonts for coding) by adding this in your preferences – just substitute the name of the font:
{
"font_face": "Source Code Pro"
}
Font Variants
(based on a suggested edit by @Merlin)
If you want to choose font variants, this becomes more complicated. An example (Sublime Text 3, macOS).
- Font name in Font Book:
Input Mono Compressed Extra Light Italic
- Font filename:
InputMonoCompressed-ExtraLightItalic.ttf
In your settings, you then have to use:
"font_face": "InputMonoCompressed-ExtraLightItalic",
That is, go with the filename minus extension.
The following works for "Input Mono Compressed Extra Light":
"font_face": "InputMonoCompressed ExLight",
The following attempts didn't work:
"font_face": "Input Mono Compressed Extra Light Italic",
"font_face": "InputMonoCompressed ExtraLightItalic",
"font_face": "InputMonoCompressedExtraLightItalic",
"font_face": "InputMonoCompressed ExLightItalic",
// and more permutations
"font_face": "Input Mono Compressed ExLight",
Which is a little maddening considering Input Mono Compressed
did work for the non-'Extra Light' version. I never did discover the right permutations and shortening to get the Extra Light Italic to work.
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
1
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f693356%2fhow-can-i-determine-what-font-faces-are-available-for-me-to-use-with-sublime-tex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
From your Finder, open Applications » Font Book.app. It will show you a list of all fonts installed on your system:
You can use all of these in Sublime Text (however you may want try only Fixed Width fonts for coding) by adding this in your preferences – just substitute the name of the font:
{
"font_face": "Source Code Pro"
}
Font Variants
(based on a suggested edit by @Merlin)
If you want to choose font variants, this becomes more complicated. An example (Sublime Text 3, macOS).
- Font name in Font Book:
Input Mono Compressed Extra Light Italic
- Font filename:
InputMonoCompressed-ExtraLightItalic.ttf
In your settings, you then have to use:
"font_face": "InputMonoCompressed-ExtraLightItalic",
That is, go with the filename minus extension.
The following works for "Input Mono Compressed Extra Light":
"font_face": "InputMonoCompressed ExLight",
The following attempts didn't work:
"font_face": "Input Mono Compressed Extra Light Italic",
"font_face": "InputMonoCompressed ExtraLightItalic",
"font_face": "InputMonoCompressedExtraLightItalic",
"font_face": "InputMonoCompressed ExLightItalic",
// and more permutations
"font_face": "Input Mono Compressed ExLight",
Which is a little maddening considering Input Mono Compressed
did work for the non-'Extra Light' version. I never did discover the right permutations and shortening to get the Extra Light Italic to work.
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
1
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
add a comment |
From your Finder, open Applications » Font Book.app. It will show you a list of all fonts installed on your system:
You can use all of these in Sublime Text (however you may want try only Fixed Width fonts for coding) by adding this in your preferences – just substitute the name of the font:
{
"font_face": "Source Code Pro"
}
Font Variants
(based on a suggested edit by @Merlin)
If you want to choose font variants, this becomes more complicated. An example (Sublime Text 3, macOS).
- Font name in Font Book:
Input Mono Compressed Extra Light Italic
- Font filename:
InputMonoCompressed-ExtraLightItalic.ttf
In your settings, you then have to use:
"font_face": "InputMonoCompressed-ExtraLightItalic",
That is, go with the filename minus extension.
The following works for "Input Mono Compressed Extra Light":
"font_face": "InputMonoCompressed ExLight",
The following attempts didn't work:
"font_face": "Input Mono Compressed Extra Light Italic",
"font_face": "InputMonoCompressed ExtraLightItalic",
"font_face": "InputMonoCompressedExtraLightItalic",
"font_face": "InputMonoCompressed ExLightItalic",
// and more permutations
"font_face": "Input Mono Compressed ExLight",
Which is a little maddening considering Input Mono Compressed
did work for the non-'Extra Light' version. I never did discover the right permutations and shortening to get the Extra Light Italic to work.
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
1
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
add a comment |
From your Finder, open Applications » Font Book.app. It will show you a list of all fonts installed on your system:
You can use all of these in Sublime Text (however you may want try only Fixed Width fonts for coding) by adding this in your preferences – just substitute the name of the font:
{
"font_face": "Source Code Pro"
}
Font Variants
(based on a suggested edit by @Merlin)
If you want to choose font variants, this becomes more complicated. An example (Sublime Text 3, macOS).
- Font name in Font Book:
Input Mono Compressed Extra Light Italic
- Font filename:
InputMonoCompressed-ExtraLightItalic.ttf
In your settings, you then have to use:
"font_face": "InputMonoCompressed-ExtraLightItalic",
That is, go with the filename minus extension.
The following works for "Input Mono Compressed Extra Light":
"font_face": "InputMonoCompressed ExLight",
The following attempts didn't work:
"font_face": "Input Mono Compressed Extra Light Italic",
"font_face": "InputMonoCompressed ExtraLightItalic",
"font_face": "InputMonoCompressedExtraLightItalic",
"font_face": "InputMonoCompressed ExLightItalic",
// and more permutations
"font_face": "Input Mono Compressed ExLight",
Which is a little maddening considering Input Mono Compressed
did work for the non-'Extra Light' version. I never did discover the right permutations and shortening to get the Extra Light Italic to work.
From your Finder, open Applications » Font Book.app. It will show you a list of all fonts installed on your system:
You can use all of these in Sublime Text (however you may want try only Fixed Width fonts for coding) by adding this in your preferences – just substitute the name of the font:
{
"font_face": "Source Code Pro"
}
Font Variants
(based on a suggested edit by @Merlin)
If you want to choose font variants, this becomes more complicated. An example (Sublime Text 3, macOS).
- Font name in Font Book:
Input Mono Compressed Extra Light Italic
- Font filename:
InputMonoCompressed-ExtraLightItalic.ttf
In your settings, you then have to use:
"font_face": "InputMonoCompressed-ExtraLightItalic",
That is, go with the filename minus extension.
The following works for "Input Mono Compressed Extra Light":
"font_face": "InputMonoCompressed ExLight",
The following attempts didn't work:
"font_face": "Input Mono Compressed Extra Light Italic",
"font_face": "InputMonoCompressed ExtraLightItalic",
"font_face": "InputMonoCompressedExtraLightItalic",
"font_face": "InputMonoCompressed ExLightItalic",
// and more permutations
"font_face": "Input Mono Compressed ExLight",
Which is a little maddening considering Input Mono Compressed
did work for the non-'Extra Light' version. I never did discover the right permutations and shortening to get the Extra Light Italic to work.
edited yesterday
answered Dec 26 '13 at 16:50
slhckslhck
163k47451476
163k47451476
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
1
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
add a comment |
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
1
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
What syntax allows you to specify Regular, ExtraLight, etc.?
– Merlin
Apr 4 at 15:45
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
@Merlin Apparently not possible: forum.sublimetext.com/t/…
– slhck
Apr 4 at 15:49
1
1
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
I experimented with typing exactly as shown in fontbook, with spaces between words removed. This worked for example: ‘InputMonoCondensed ExtraLight’. The spacing or lack of was important, but chars were all from Font Book name.
– Merlin
Apr 5 at 17:14
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
Good to know, @Merlin! Feel free to suggest an edit to the answer to reflect that.
– slhck
Apr 5 at 19:00
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
@Merlin Your initial edit was rejected, but I took parts of it and reordered it to put the actual answer on top.
– slhck
yesterday
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f693356%2fhow-can-i-determine-what-font-faces-are-available-for-me-to-use-with-sublime-tex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Sublime Text can use the same fonts as on your OS
– slhck
Dec 26 '13 at 16:41
Great. How can I determine what fonts are available on my OS, which is Mac - Mavericks, incidentally.
– jononomo
Dec 26 '13 at 16:46
Answering my own question - on Mac, use the Font Book app.
– jononomo
Dec 26 '13 at 16:51