File tree 10 files changed +42
-7
lines changed
10 files changed +42
-7
lines changed Original file line number Diff line number Diff line change
1
+ " Vim ftdetect file
2
+ " Language: SCSS
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
autocmd BufNewFile ,BufReadPost *.scss set filetype = scss
Original file line number Diff line number Diff line change
1
+ " Vim ftdetect file
2
+ " Language: Stylus
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
autocmd BufNewFile ,BufReadPost *.styl set filetype = stylus
2
7
autocmd BufNewFile ,BufReadPost *.stylus set filetype = stylus
Original file line number Diff line number Diff line change
1
+ " Vim indent file
2
+ " Language: SCSS
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
runtime indent /css.vim
Original file line number Diff line number Diff line change
1
+ " Vim indent file
2
+ " Language: Stylus
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
runtime indent /css.vim
Original file line number Diff line number Diff line change 1
- # CSS Media Features
1
+ # CSS Media Features List
2
2
3
- Add prop to the list, reverse sort
3
+ Add prop to the list, reverse sort ` :sort! `
4
4
5
5
Find/Replace Space/Or Regex:
6
6
7
- ``` js
7
+ ```
8
8
s/\\|/\r/g
9
9
s/ /\\|/g
10
10
```
Original file line number Diff line number Diff line change 1
- # CSS Props DB
1
+ # CSS Props List
2
2
3
3
Add prop to the list, reverse sort ` :sort! `
4
4
5
5
Find/Replace Space/Or Regex:
6
6
7
- ``` js
7
+ ```
8
8
s/\\|/\r/g
9
9
s/ /\\|/g
10
10
```
Original file line number Diff line number Diff line change 1
- # CSS Values DB
1
+ # CSS Values List
2
2
3
- Add prop to the list, reverse sort
3
+ Add prop to the list, reverse sort ` :sort! `
4
4
5
5
Find/Replace Space/Or Regex:
6
6
Original file line number Diff line number Diff line change
1
+ " Vim syntax file
2
+ " Language: CSS
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
if ! exists (" main_syntax" )
2
7
let main_syntax = ' css'
3
8
elseif exists (" b:current_syntax" ) && b: current_syntax == " css"
Original file line number Diff line number Diff line change
1
+ " Vim syntax file
2
+ " Language: SCSS
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
if ! exists (" main_syntax" )
2
7
let main_syntax = ' css'
3
8
elseif exists (" b:current_syntax" ) && b: current_syntax == " scss"
Original file line number Diff line number Diff line change
1
+ " Vim syntax file
2
+ " Language: Stylus
3
+ " Maintainer: Amadeus Demarzi, http://github.com/amadeus
4
+ " URL: https://github.com/amadeus/vim-css
5
+
1
6
let b: embedded_rules = 1
2
7
runtime ! syntax /css.vim
3
8
unlet b: embedded_rules
You can’t perform that action at this time.
0 commit comments