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 348
- Win 212
- Mac 77
- Linux 59
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Mac | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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.