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
  • 6 years ago
  • 1 hour ago
  • 10 years ago

Installs

  • Total 24K
  • Win 5K
  • Mac 12K
  • Linux 7K
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 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 1 0 0
Mac 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 2 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 1 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 0 1 1 0 1 1 0 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