inline_edit.vim
This commit is contained in:
parent
897a1efb9c
commit
0fec5cf48a
|
@ -141,6 +141,10 @@ Plug 'suan/vim-instant-markdown'
|
||||||
Plug 'prabirshrestha/async.vim'
|
Plug 'prabirshrestha/async.vim'
|
||||||
Plug 'prabirshrestha/vim-lsp'
|
Plug 'prabirshrestha/vim-lsp'
|
||||||
|
|
||||||
|
" inline_edit.vim
|
||||||
|
" https://github.com/AndrewRadev/inline_edit.vim
|
||||||
|
Plug 'AndrewRadev/inline_edit.vim'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
"}}}
|
"}}}
|
||||||
|
@ -149,6 +153,15 @@ runtime macros/matchit.vim
|
||||||
|
|
||||||
" #plugin settings{{{
|
" #plugin settings{{{
|
||||||
|
|
||||||
|
" inline_edit.vim
|
||||||
|
let g:inline_edit_patterns = [{
|
||||||
|
\ 'main_filetype': '*html',
|
||||||
|
\ 'sub_filetype': 'scss',
|
||||||
|
\ 'indent_adjustment': 1,
|
||||||
|
\ 'start': '<style\>[^>]*lang=.scss[^>]*>',
|
||||||
|
\ 'end': '</style>'
|
||||||
|
\ }]
|
||||||
|
|
||||||
" asyncomplete.vim
|
" asyncomplete.vim
|
||||||
"{{{
|
"{{{
|
||||||
" let g:asyncomplete_auto_popup = 0
|
" let g:asyncomplete_auto_popup = 0
|
||||||
|
|
Loading…
Reference in New Issue