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

schema-rb

by hedgesky ST3

Sublime Text 3 package for quick navigation across tables in schema.rb

Details

Installs

  • Total 92
  • Win 30
  • Mac 37
  • Linux 25
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 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17
Windows 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
Mac 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
Linux 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

schema.rb navigation for Sublime Text

This package introduces quick navigation across tables defined in schema.rb (Rails-specific file).

Usage

Just use Goto Symbol when you have schema.rb opened: R on Mac, CtrlR on Windows.

Installation

The easiest way to install is using Package Control, search for schema-rb:

  1. Open Command Palette (P on Mac, CtrlShift ⇧P on Windows)
  2. Choose Package Control: Install Package
  3. Select schema-rb

Integration with ApplySyntax

By default, ApplySyntax disrupts functionality of this package by overriding schema-rb syntax with Ruby on Rails syntax. To fix that, you could configure ApplySyntax accordingly:

  • Open up its settings (Sublime Text -> Preferences -> Package Settings -> ApplySyntax -> Settings)
  • Add following snippet under syntaxes key:
{
    "syntax": "schema-rb/schema-rb.sublime-syntax",
    "rules": [
        {"file_path": ".*/schema.rb$"}
    ]
}