comparison runtime/indent/sass.vim @ 28141:dce918af0c00

Update runtime files Commit: https://github.com/vim/vim/commit/47c532e2bc55e8a48f7f47e1fae1ed30144f2fa1 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 19 15:18:53 2022 +0000 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Mar 2022 16:30:05 +0100
parents 63b0b7b79b25
children 92fd65eac53a
comparison
equal deleted inserted replaced
28140:4511c6ef2893 28141:dce918af0c00
1 " Vim indent file 1 " Vim indent file
2 " Language: Sass 2 " Language: Sass
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4 " Last Change: 2017 Jun 13 4 " Last Change: 2022 Mar 15
5 5
6 if exists("b:did_indent") 6 if exists("b:did_indent")
7 finish 7 finish
8 endif 8 endif
9 let b:did_indent = 1 9 let b:did_indent = 1
10 10
11 setlocal autoindent sw=2 et 11 setlocal autoindent sw=2 et
12 setlocal indentexpr=GetSassIndent() 12 setlocal indentexpr=GetSassIndent()
13 setlocal indentkeys=o,O,*<Return>,<:>,!^F 13 setlocal indentkeys=o,O,*<Return>,<:>,!^F
14
15 let b:undo_indent = "setl ai< inde< indk<"
14 16
15 " Only define the function once. 17 " Only define the function once.
16 if exists("*GetSassIndent") 18 if exists("*GetSassIndent")
17 finish 19 finish
18 endif 20 endif