SublimeText3

Overview

A bunch of tips and tricks about how to use Sublime Text 3.

Command line alias

Mac

Add alias in ~/.bashrc

alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"

Setting up

Open up Sublime Text

  • install package control
    • cmd + shift + p, install package control

Package guide

MarkdownPreview

Super useful package to let you preview markdown documents as you right. There’s heaps to read about this at https://facelessuser.github.io/MarkdownPreview/usage/. I’d be super interested if anyone has found a plugin which does live preview well (rather than just preview on demand).

SublimeLinter-pylint

Installation

  • follow the online instructions to install the Pylint python package (either python2 or python3) with pip [add link to pip guide]

  • then do package control: install package –> SublimeLinter

  • then do package control: install package –> SublimeLinter-pylint

  • then fix the path settings for this package, SublimeText –> Preferences –> Package Settings (follow this guide )

    • for example

      {"paths": {
          "linux": [],
          "osx": [
              "/usr/local/bin/pylint"
          ],
          "windows": []
      }}