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

ERB Autocomplete

by CasperLaiTW ALL

The package to help use erb template user that easy and quick to finish the erb tag.

Labels ERB, auto-complete

Details

  • 2018.05.15.02.10.03
  • github.​com
  • github.​com
  • 7 years ago
  • 3 hours ago
  • 11 years ago

Installs

  • Total 24K
  • Win 5K
  • Mac 12K
  • Linux 7K
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 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 2 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 2 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 0 0 1 0 0 0

Readme

Source
raw.​githubusercontent.​com

ERB Autocomplete

The package to help use erb template user that easy and quick to finish the ERB tag.


How to install

With Package Control:

  1. Run “Package Control: Install Package” command, find and install ERB Autocomplete package.
  2. Restart your sublime text editor.

Manually:

  1. Clone or download git repo into your Sublime Text packages folder.
git clone https://github.com/CasperLaiTW/ERBAutocomplete.git "ERB Autocomplete"
  1. Restart your sublime text editor.

We are support ST2 and ST3 now.

.base file

The .base file is project root, its include ERB Autocomplete package's configuration. “json { "partials” : “partials” }

We suggest you create this file. If you don't want, it's ok. We will use default setting.

## Auto complete
You would set syntax to **ERB**.

And you can:

Manually:

1. Type ERB keyword like **if**, **else** or nothing.
2. Press `Control` + `space`, will activate completion. ST would popup to tip you and select you want.

Automatic completion:

1. Open your user settings file.
2. Add `text.html.erb` to `auto_complete_selector`, you should according to your settings to set.

  This is example.
  ```json
  "auto_complete_selector" : "text.html.erb, source - comment, meta.tag - punctuation.definition.tag.begin"
  1. Reset your Sublime Text editor.
  2. And now you type if, else, the editor will automatic activate completion.

Create layout

We support quick to create layout file. You can Press Ctrl + Alt + l, Sublime Text will show input panel to you and type your custom layout filename. We will create the file in your project.

If you press keyboard shortcut, Sublime Text would only create new file and show. Sublime text don't show input panel. That's means you don't open any file window and active in your project. So you should open any file window in your project. It will be working.

If your project is not root, means your project's parent have any folder. Please create a file named .base in your project. We will detect the file and means this is your project root. Layout will created in this folder.

Manage page and layout mapping

Mapping layout

  1. Open you want to mapping view.
  2. Run command ERB: Add Layout Mapping
  3. Sublime Text will show all layout in your project.
  4. Select layout you want.
  5. Done!!!

Unmapping layout

  1. Open you want to unmapping view.
  2. Run command ERB: Remove Layout Mapping
  3. Auto delete mapping file. Done!!!

Added partials

Partial view default folder name: partials

  1. Open your file and cursor to you want to added.
  2. Run command ERB: ERB: Add Partial Mapping
  3. Sublime Text will show all partial views in project's partial folder.
  4. Select partial view you want.
  5. Done!!!

Avaiable actions

OSX:

  • Toggle Mark comment – Command+.
  • Create custom layout file - Command+Alt+l

Linux / Windows:

  • Toggle Mark comment – Ctrl+.
  • Create custom layout file - Ctrl+Alt+l