Skip to content

Commit 5cffad8

Browse files
committed
Release prep
1 parent b80941f commit 5cffad8

File tree

10 files changed

+42
-7
lines changed

10 files changed

+42
-7
lines changed

ftdetect/scss.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1+
" Vim ftdetect file
2+
" Language: SCSS
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
autocmd BufNewFile,BufReadPost *.scss set filetype=scss

ftdetect/stylus.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1+
" Vim ftdetect file
2+
" Language: Stylus
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
autocmd BufNewFile,BufReadPost *.styl set filetype=stylus
27
autocmd BufNewFile,BufReadPost *.stylus set filetype=stylus

indent/scss.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1+
" Vim indent file
2+
" Language: SCSS
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
runtime indent/css.vim

indent/stylus.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1+
" Vim indent file
2+
" Language: Stylus
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
runtime indent/css.vim

misc/media.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# CSS Media Features
1+
# CSS Media Features List
22

3-
Add prop to the list, reverse sort
3+
Add prop to the list, reverse sort `:sort!`
44

55
Find/Replace Space/Or Regex:
66

7-
```js
7+
```
88
s/\\|/\r/g
99
s/ /\\|/g
1010
```

misc/props.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# CSS Props DB
1+
# CSS Props List
22

33
Add prop to the list, reverse sort `:sort!`
44

55
Find/Replace Space/Or Regex:
66

7-
```js
7+
```
88
s/\\|/\r/g
99
s/ /\\|/g
1010
```

misc/values.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# CSS Values DB
1+
# CSS Values List
22

3-
Add prop to the list, reverse sort
3+
Add prop to the list, reverse sort `:sort!`
44

55
Find/Replace Space/Or Regex:
66

syntax/css.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
" Vim syntax file
2+
" Language: CSS
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
if !exists("main_syntax")
27
let main_syntax = 'css'
38
elseif exists("b:current_syntax") && b:current_syntax == "css"

syntax/scss.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
" Vim syntax file
2+
" Language: SCSS
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
if !exists("main_syntax")
27
let main_syntax = 'css'
38
elseif exists("b:current_syntax") && b:current_syntax == "scss"

syntax/stylus.vim

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
" Vim syntax file
2+
" Language: Stylus
3+
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
4+
" URL: https://github.com/amadeus/vim-css
5+
16
let b:embedded_rules = 1
27
runtime! syntax/css.vim
38
unlet b:embedded_rules

0 commit comments

Comments
 (0)