diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-14 13:17:26 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-14 13:17:26 +0200 |
commit | 14dc82fc4e6c0c08078f97a24a6c1639c1cc5113 (patch) | |
tree | dea8d2398a9377a0eee7786776e3cd420ce1ee89 /ftplugin/razor.vim | |
parent | e86e0ad36ef9501acbc3e8c63a1d4fab104e47cb (diff) | |
download | vim-polyglot-14dc82fc4e6c0c08078f97a24a6c1639c1cc5113.tar.gz vim-polyglot-14dc82fc4e6c0c08078f97a24a6c1639c1cc5113.zip |
Update
Diffstat (limited to 'ftplugin/razor.vim')
-rw-r--r-- | ftplugin/razor.vim | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/ftplugin/razor.vim b/ftplugin/razor.vim index 76348dd0..2d516bfc 100644 --- a/ftplugin/razor.vim +++ b/ftplugin/razor.vim @@ -1,30 +1,10 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'razor') == -1 -" Vim filetype plugin -" Language: LessCSS -" Author: Tim Pope <vimNOSPAM@tpope.org> -" Maintainer: Leonard Ehrenfried <leonard.ehrenfried@web.de> -" Last Change: 2011 Sep 30 - -" Only do this when not done yet for this buffer -:UltiSnipsAddFiletypes razor.html - if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 -"let b:undo_ftplugin = "setl cms< def< inc< inex< ofu< sua<" - -"setlocal iskeyword+=- -"setlocal commentstring=//\ %s -"setlocal define=^\\s*\\%(@mixin\\\|=\\) -"setlocal includeexpr=substitute(v:fname,'\\%(.*/\\\|^\\)\\zs','_','') -"setlocal omnifunc=csscomplete#CompleteCSS -"setlocal suffixesadd=.less - -"let &l:include = '^\s*@import\s\+\%(url(\)\=["'']\=' - " vim:set sw=2: endif |