summaryrefslogtreecommitdiffstats
path: root/ftplugin/vue.vim
blob: cc10c561a9e78e0085a85ed63af445d63047b771 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vue') == -1
  
" Vim filetype plugin
" Language: Vue.js
" Maintainer: Eduardo San Martin Morote
" Author: Adriaan Zonnenberg

if exists("b:did_ftplugin")
  finish
endif

runtime! ftplugin/html.vim

setlocal suffixesadd+=.vue

if !exists('g:no_plugin_maps') && !exists('g:no_vue_maps')
  nnoremap <silent> <buffer> [[ :call search('^<\(template\<Bar>script\<Bar>style\)', 'bW')<CR>
  nnoremap <silent> <buffer> ]] :call search('^<\(template\<Bar>script\<Bar>style\)', 'W')<CR>
  nnoremap <silent> <buffer> [] :call search('^</\(template\<Bar>script\<Bar>style\)', 'bW')<CR>
  nnoremap <silent> <buffer> ][ :call search('^</\(template\<Bar>script\<Bar>style\)', 'W')<CR>
endif

if exists('g:loaded_ale')
  let g:ale_linters = get(g:, 'ale_linters', {})
  let g:ale_linters.vue = get(g:ale_linters, 'vue', ['eslint'])
  let g:ale_linter_aliases = get(g:, 'ale_linter_aliases', {})
  let g:ale_linter_aliases.vue = get(g:ale_linter_aliases, 'vue', 'javascript')
endif

endif