Font Size Per View
Sublime Text plugin to support adjusting the font size in each view individually (the default font size commands adjust it globally across all views).
Details
Installs
- Total 179
- Win 111
- Mac 34
- Linux 34
Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Font Size Per View
A Sublime Text plugin to support adjusting the font size in each view individually (the default font size commands adjust it globally across all views).
Installation
Package Control
- Open the command palette in Sublime Text (ctrl+shift+p by default).
- Search for
Package Control: Install Package
and hit enter to execute the command. - Search for
Font Size Per View
in the list of displayed packages, then hit enter once it is focused to install the plugin.
The plugin will now be installed.
Manual
Linux/Windows
Clone this repository into ~/.config/sublime-text/Packages/
named as Font Size Per View
.
For example:
$ git clone https://github.com/m-bartlett/SublimeFontSizePerView "~/.config/sublime-text/Packages/Font Size Per View"
MacOS
Clone this repository into ~/Library/Application Support/Sublime Text/Packages/
named as Font Size Per View
.
For example:
$ git clone https://github.com/m-bartlett/SublimeFontSizePerView "~/Library/Application Support/Sublime Text/Packages/Font Size Per View"
Usage
Command Palette
Using the command palette, query for any of these commands:
- Font Size Per View: Increase View Font Size
- Font Size Per View: Decrease View Font Size
- Font Size Per View: Reset View Font Size
Note: the Reset View Font Size
command reads the font_size
setting in your global user settings in ~/.config/sublime-text/Packages/User/Preferences.sublime-settings
to determine what font size to reset the view to.
Default Keybinds
Note: These keybinds are commented out initially. To access a view to quickly edit your keybinding settings, click the context menu option Preferences
> Package Settings
> Font Size Per View
> Key Bindings
.
ctrl+alt+=
will calladjust_font_size_per_view
with args{"delta": 1}
which increases the active view's font size by 1 pt.ctrl+alt+-
will calladjust_font_size_per_view
with args{"delta": -1}
which decreases the active view's font size by 1 pt.ctrl+alt+0
will calladjust_font_size_per_view
with args{}
which resets the font size of the view back to the globalfont_size
setting's value.