Increase the font size on Sublime Text 2 status bar? - configuration

Is it possible to increase the font size on the Sublime Text status bar? I did some searching and didn't find much at all on the subject. I sometimes miss important information displayed in the status bar simply because its so small I don't notice it.

As far as I know you should modify theme settings for that. Please take a look at this answer (at the bottom of the page) Customize interface fonts

Try this it will work for sure in Sublime Text 3 .
navigate to Preferences -> Default File Preferences .
Its will open the file in Sublime text itself
look for "font Courier New 10"(for me Line no: 14)
just change the 10 to X size.

Related

How to make a specific file always visible on the sidebar everytime I open sublime text 3

I switched from Notepad++ to Sublime Text 3 last week and I'm loving it. I know Notepad++ don't have a feature like this also, but is there a plugin or setting on Sublime Text 3 that I can use to make a file always visible on my sidebar every time I open it? I have a single text file that has some login info and useful note for my development and I want Sublime to remember to at least add a shortcut on that file on my sidebar so that I can access it anytime I want to.
I want workdocs.php to be always visible on my sidebar when every I open my Sublime Text 3. Thanks in advance!
It's not exactly what you want but you could try Sublime FavoriteFiles:
https://github.com/facelessuser/FavoriteFiles
It's ST3 compatible and works well. You can assign keyboard short-cuts to the various commands or use Control + Shift + P to access them quickly.

How to let user change text font and colour in WordPress WSIWYG text editor

I have set up a WordPress website for a client and have found that the user cannot:
1) change font size
2) change the actual font
3) change colour of the font
for the text they enter in the WordPress admin section as there are no tools to do this in the WSIWYG text editor.
Any suggestions on how to achieve this, I have tried looking for a plugin that enables this but can't seem to find one.
Of course they can achieve this in the Text section through HTML but the users are not familiar with HTML and CSS and frankly I wouldn't want them doing that.
I am using the latest version of WordPress (3.9.2)
p.s. I have the TinyMCE Advanced plugin installed already, it's quite cool but it doesn't have the above features I want.
Believe It or Not you can do this with TinyMCE Advanced.
step 1.) Install and activate the plugin (you said that you done that)
step 2.) Navigate to Settings->TinyMCE Advanced (in admin back-end and click it)
step 3.) There you will see it says Unused Buttons click the button you want and
drag and drop it inside Editor Settings (above Unused Buttons).
step 4.) after you have drag and dropped buttons click Save
step 5.) in order to change font color hover over icons inside Edit post
on one of them (beside undo/redo button) you will see on hover tool-tip that says Toolbar Toggle
click it and it will expand TinyMCE
step 6.) beside emoticons icon you will see an A letter (that letter is
underlined) this is where you change text color.
As you can see there a lot of options to choose from (you probably want Font Family and Font Sizes just see the step3 )

Customize Sublime Text 2 with image background

I would like to customize my Sublime Text with an image in the background (its dark enough for the text to show clearly). I have seen images added as background for the vim text editor and I can change the color scheme in sublime, but I'm not sure how to make the background an uploaded image.
I'm using Linux Ubuntu os, if that makes a difference.
Thanks!
This isn't currently possible in Sublime Text 2.
However, there's already an open feature request for it on their UserEcho forum, you can upvote it there.

PhpStorm text size

Is it possible to define a shortcut to increase/decrease size of code in PhpStorm, like what you can do in Notepad++ with CTRL+Mouse Wheel?
Enable CTRL+Mouse Wheel: Settings -> Editor -> Change font size (Zoom) with Ctrl+Mouse Wheel (check).
Specify exact font size: Settings -> Editor -> Colors & Fonts -> Font.
I am able to change my PHP Storm (version 8.0.3 or later) Fonts by
Go to File and then click Settings.
Form Left Side Menu, Select Editor --> General Tab
Check this box under Mouse section Change font size (zoom) with Ctrl_Mouse Wheel (see below pic).
30 Second Demo Here
in new version in this address
file > setting > Editor > general
check this item
Change font size (Zoom) with Ctrl+Mouse Wheel
Also you can use View → Enter Presentation Mode.
Default font size for this mode is 24.
You can change it here: Settings → Appearance → Presentation Mode → Font size
The pre-defined schemes are not editable. To change colors and fonts settings in such a scheme, create its copy.
So to change font size select any scheme of your choice. Save the "scheme" as a copy with a name like "scheme 2".
Now the default font size will be editable.
In MacOS, you should navigate to the PhpStorm -> Preferences -> Editor -> General screen and check/uncheck the "Change font size (Zoom) with Command + Mouse Wheel" checkbox. I unchecked because I don't like it but maybe you do.
Moreover, you can use the finder field in the top left corner of the same PhpStorm -> Preferences dialog. Type the word "size" in this field and you will see a couple of items on the right hand side of the dialog. There are the Editor Actions -> Decrease Font Size and Editor Actions -> Increase Font Size options.
Right click each of them and choose "Add Keyboard Shortcut". Finally, press the Ctrl and numerical plus in case of Increase and Ctrl and numerical minus in case of Decrease and press OK (if you have numerical part of your keyboard).
In PhpStorm 2020.2.1 go to :
Settings -> Editor-> Font
That's it
Switching beetween Editors and zooming text during presentations or so could be complicated.
If you used to do it like in notepad++ than maybe this helps if you use win:
^NumpadAdd::
send,^{WheelUp}
return
the complete script you could find here: https://gist.github.com/sl5net/7170280#file-gistfile1-txt

How to make ruler always be shown in Sublime text 2?

I use Sublime Text 2 and want a Ruler to be shown in every file with specific line-height. But I have to show it manually in every file.
Go to Sublime Text > Preferences > Settings - User
Add a "rulers" setting with the lines you want for the ruler:
// Adds a single vertical ruler at column 80
"rulers": [80],
If you want multiple rulers, separate the values with a comma:
// Adds two vertical rulers: one at column 80 and one at column 120
"rulers": [80, 120],
Rulers not showing? Rulers are only shown when using a monospace font, which is the default font for Sublime Text. Ensure you are using a monospace font if the settings above don't work for you.
Edit the "rulers" value in the default settings to contain the column number you want the ruler to be displayed on, and it will persist.
Never edit Settings - Default; edit Settings - User instead. If you upgrade your SublimeText version you will lose all of your settings because Settings - Default will be overwritten.
In the Packages folders the 'User/' folder will be ignored between upgrades of SublimeText, the settings here will be persistent.
To enable the persistent rulers in any document, add the settings in Defaults - User:
{
"rulers": [75, 80, 85]
}
This example will display 3 rulers, at 75, 80 and 85 chars length.
As others have stated before me, select Preferences -> Settings-User and change
"rulers": [],
to
"rulers": [80],
in order to display one ruler at column 80.
Now for the rub, it seems that one must use a monospaced font in order to display rulers so you'll also need to change
"font_face": "",
to
"font_face": "Monospace",
or any other monospaced font.
Thinking about it, this makes sense. If different characters have different widths, then the ruler could potentially not be a single line, but a bunch of annoying line segments. I noticed this while using the default font and my column numbers were not the same for the same vertical position. At the same time, my fancy ruler was specified but not displayed. Changing the font to Monospace solved both problems.
While the answer by Ross Allen is great, it isn't the most convenient if you find yourself wanting to toggle the rulers on and off or change the width at various points while using Sublime.
Luckily, someone made a Package that allows you to do this.
https://packagecontrol.io/packages/QuickRulers
The package works in both Sublime Text 2 and 3.
Install Instructions:
Install PackageControl
Open PackageControll (e.g. via ⌘ + SHIFT + P)
Type "Install" and select "Package Control: Install Package"
Type "QuickRulers" and hit Enter to install the QuickRulers package.
You can access the command (quick_rulers) through several different means, but by default it is loaded in Omnisearch via "QuickRulers: Open Panel". (i.e., Hit ⌘ + SHIFT + P and type "QuickRulers: Open Panel")
If you change font, ruler will not be displayed. E.g. I set "font_face": "Lucida Grande", and ruler disappeared.
I just had this problem and noticed that the my ruler was only showing up when I was slightly scrolled to the right horizontally. Turns out the reason it was disappearing was because I was slightly zoomed in. Press Cmd+0 to make sure you are zoomed to the default 100% size before trying other things in case this is also your issue.
(I am using Sublime Text 3)
"editor.rulers" worked for me:
{
"editor.rulers": [72, 80]
}
instead of
{
"rulers": [72, 80]
}
Posting here so that it may help for some peoples.
P.S. I am using vscode on Macbook.