ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Font Size Per View

by m-bartlett ST3

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 270
  • Win 164
  • Mac 57
  • Linux 49
Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7
Windows 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 3 0 0 0 1 0 0 0 0 0 0 1 1 0
Mac 0 0 0 0 0 0 1 0 2 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 1 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 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 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).

FontSizePerView plugin demo showing different font sizes between a couple of views

Installation

Package Control

  1. Open the command palette in Sublime Text (ctrl+shift+p by default).
  2. Search for Package Control: Install Package and hit enter to execute the command.
  3. Search forFont 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.

View package control page

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 call adjust_font_size_per_view with args {"delta": 1} which increases the active view's font size by 1 pt.
  • ctrl+alt+- will call adjust_font_size_per_view with args {"delta": -1} which decreases the active view's font size by 1 pt.
  • ctrl+alt+0 will call adjust_font_size_per_view with args {} which resets the font size of the view back to the global font_size setting's value.