Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hokaccha
Created October 28, 2009 13:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hokaccha/220491 to your computer and use it in GitHub Desktop.
Save hokaccha/220491 to your computer and use it in GitHub Desktop.
" textobj-template - Text objects for WAF template engine.
" Version: 0.0.1
" Author: Kazuhito Hokamura
" License: MIT license (see <http://www.opensource.org/licenses/mit-license>)
if exists('g:loaded_textobj_template')
finish
endif
call textobj#user#plugin('template', {
\ 'tt': {
\ 'select-a': 'aTt',
\ 'select-i': 'iTt',
\ '*pattern*': ['\[%-\? ', ' -\?%\]'],
\ },
\ 'mt': {
\ 'select-a': 'aTm',
\ 'select-i': 'iTm',
\ '*pattern*': ['<?= ', ' ?>'],
\ },
\ 'rhtml': {
\ 'select-a': 'aTr',
\ 'select-i': 'iTr',
\ '*pattern*': ['<%= ', ' %>'],
\ },
\ 'django': {
\ 'select-a': 'aTd',
\ 'select-i': 'iTd',
\ '*pattern*': ['{\(%\|{\) ', ' \(%\|}\)}'],
\ },
\ })
let loaded_textobj_template= 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment