From bf188c4a51a6d151bb2694d73048727f4359c634 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Tue, 5 Jul 2016 09:53:49 +0200 Subject: Update --- ftplugin/ember-script.vim | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'ftplugin/ember-script.vim') diff --git a/ftplugin/ember-script.vim b/ftplugin/ember-script.vim index a352a86d..1e6c12a9 100644 --- a/ftplugin/ember-script.vim +++ b/ftplugin/ember-script.vim @@ -1,10 +1,10 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'emberscript') == -1 " Language: ember-script -" Maintainer: heartsentwined -" URL: http://github.com/heartsentwined/vim-ember-script -" Version: 1.0.1 -" Last Change: 2013 Apr 17 +" Maintainer: Yulij Andreevich Lesov > +" URL: http://github.com/yalesov/vim-ember-script +" Version: 1.0.3 +" Last Change: 2016 Jul 5 " License: GPL-3.0 setlocal tabstop=2 @@ -14,7 +14,11 @@ setlocal smarttab setlocal expandtab setlocal smartindent -setlocal formatoptions-=t formatoptions+=croqlj +if v:version < 703 + setlocal formatoptions-=t formatoptions+=croql +else + setlocal formatoptions-=t formatoptions+=croqlj +endif setlocal comments=:# setlocal commentstring=#\ %s -- cgit v1.2.3