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

Block Cursor Everywhere

by karlhorky ALL

Sublime Text plugin to display a block cursor

Details

Installs

  • Total 16K
  • Win 6K
  • Mac 7K
  • Linux 3K
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 1 1 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 1 0 1 2 0 0 1
Mac 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

BlockCursorEverywhere

A block cursor for Sublime Text 2 and 3.

The default cursor in Sublime Text is a thin line with low visibility. Command mode in the Vintage and Vintageous plugins decreases the visibility even further. This plugin displays the cursor as a rectangular block, increasing its prominence on the screen.

Installation

With Package Control

The easiest way to install Block Cursor Everywhere is via Package Control for Sublime Text.

Once you install Package Control, restart Sublime Text and bring up the Command Palette with Command+Shift+P on OS X or Control+Shift+P on Linux/Windows.

Select Package Control: Install Package, wait while Package Control fetches the latest package list, then select Block Cursor Everywhere when the list appears. Package Control will automatically keep the package up-to-date.

Without Package Control

Go to your Sublime Text Packages directory:

Windows: %USERPROFILE%\AppData\Roaming\Sublime Text 3\Packages\
Mac: ~/Library/Application Support/Sublime Text 3/Packages/

and clone the repository there.

Configuration

Change the style of the block cursor by adding a section to your color scheme file like the following.

<dict>
    <key>name</key>
    <string>Block Cursor</string>
    <key>scope</key>
    <string>block_cursor</string>
    <key>settings</key>
    <dict>
        <key>foreground</key>
        <string>#000000</string>
        <key>background</key>
        <string>#FF1111</string>
    </dict>
</dict>

The path to your color scheme file can be specified with the color_scheme key in your user preferences:

{
    "color_scheme": "Packages/User/Monokai (Block Cursor Everywhere).tmTheme"
}

If you don't have a color scheme file yet, you can create one in your Packages/User directory from this gist.