Skip to content

Commit

Permalink
Release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
amadeus committed Dec 2, 2016
1 parent b80941f commit 5cffad8
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 7 deletions.
5 changes: 5 additions & 0 deletions ftdetect/scss.vim
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
" Vim ftdetect file
" Language: SCSS
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

autocmd BufNewFile,BufReadPost *.scss set filetype=scss
5 changes: 5 additions & 0 deletions ftdetect/stylus.vim
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
" Vim ftdetect file
" Language: Stylus
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

autocmd BufNewFile,BufReadPost *.styl set filetype=stylus
autocmd BufNewFile,BufReadPost *.stylus set filetype=stylus
5 changes: 5 additions & 0 deletions indent/scss.vim
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
" Vim indent file
" Language: SCSS
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

runtime indent/css.vim
5 changes: 5 additions & 0 deletions indent/stylus.vim
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
" Vim indent file
" Language: Stylus
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

runtime indent/css.vim
6 changes: 3 additions & 3 deletions misc/media.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# CSS Media Features
# CSS Media Features List

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

Find/Replace Space/Or Regex:

```js
```
s/\\|/\r/g
s/ /\\|/g
```
Expand Down
4 changes: 2 additions & 2 deletions misc/props.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# CSS Props DB
# CSS Props List

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

Find/Replace Space/Or Regex:

```js
```
s/\\|/\r/g
s/ /\\|/g
```
Expand Down
4 changes: 2 additions & 2 deletions misc/values.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CSS Values DB
# CSS Values List

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

Find/Replace Space/Or Regex:

Expand Down
5 changes: 5 additions & 0 deletions syntax/css.vim
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
" Vim syntax file
" Language: CSS
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

if !exists("main_syntax")
let main_syntax = 'css'
elseif exists("b:current_syntax") && b:current_syntax == "css"
Expand Down
5 changes: 5 additions & 0 deletions syntax/scss.vim
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
" Vim syntax file
" Language: SCSS
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

if !exists("main_syntax")
let main_syntax = 'css'
elseif exists("b:current_syntax") && b:current_syntax == "scss"
Expand Down
5 changes: 5 additions & 0 deletions syntax/stylus.vim
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
" Vim syntax file
" Language: Stylus
" Maintainer: Amadeus Demarzi, http://github.com/amadeus
" URL: https://github.com/amadeus/vim-css

let b:embedded_rules = 1
runtime! syntax/css.vim
unlet b:embedded_rules
Expand Down

0 comments on commit 5cffad8

Please sign in to comment.