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
  • 2 hours ago
  • 10 years ago

Installs

  • Total 24K
  • Win 5K
  • Mac 12K
  • Linux 7K
Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14
Windows 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 1 0 0 0 0 0 0
Mac 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 2 1 0 0 0 1 0 0 0 0 0 1 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 3 0 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