diff options
| author | Simeon Simeonov | 2013-09-19 22:27:58 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2013-09-19 22:27:58 +0200 |
| commit | 7bf6712498ad2618bee7bf5b3866fb6da0772339 (patch) | |
| tree | fd4d959c0f1679f2abf5663399d68df0a06472de /.emacs.d/mysnippets/text-mode/css-mode | |
| parent | b045e27c545d4027811637193632ec3ea5ef7858 (diff) | |
All snippets imported, init file polished
Diffstat (limited to '.emacs.d/mysnippets/text-mode/css-mode')
21 files changed, 81 insertions, 0 deletions
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/bg b/.emacs.d/mysnippets/text-mode/css-mode/bg new file mode 100644 index 0000000..d731807 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/bg | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #name : background-color: ... | ||
| 2 | # -- | ||
| 3 | background-color: #${1:DDD}; \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/bg.1 b/.emacs.d/mysnippets/text-mode/css-mode/bg.1 new file mode 100644 index 0000000..d31f540 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/bg.1 | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #name : background-image: ... | ||
| 2 | # -- | ||
| 3 | background-image: url($1); \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/bor b/.emacs.d/mysnippets/text-mode/css-mode/bor new file mode 100644 index 0000000..eb3a2b4 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/bor | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #name : border size style color | ||
| 2 | # -- | ||
| 3 | border: ${1:1px} ${2:solid} #${3:999}; \ No newline at end of file | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/cl b/.emacs.d/mysnippets/text-mode/css-mode/cl new file mode 100644 index 0000000..4fc7a8d --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/cl | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : clear: ... | ||
| 3 | # -- | ||
| 4 | clear: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/disp.block b/.emacs.d/mysnippets/text-mode/css-mode/disp.block new file mode 100644 index 0000000..f74ea3c --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/disp.block | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : display: block | ||
| 3 | # -- | ||
| 4 | display: block; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/disp.inline b/.emacs.d/mysnippets/text-mode/css-mode/disp.inline new file mode 100644 index 0000000..30275a8 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/disp.inline | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : display: inline | ||
| 3 | # -- | ||
| 4 | display: inline; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/disp.none b/.emacs.d/mysnippets/text-mode/css-mode/disp.none new file mode 100644 index 0000000..80632a5 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/disp.none | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : display: none | ||
| 3 | # -- | ||
| 4 | display: none; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/ff b/.emacs.d/mysnippets/text-mode/css-mode/ff new file mode 100644 index 0000000..a7352cf --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/ff | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : font-family: ... | ||
| 3 | # -- | ||
| 4 | font-family: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/fs b/.emacs.d/mysnippets/text-mode/css-mode/fs new file mode 100644 index 0000000..c28cdbb --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/fs | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : font-size: ... | ||
| 3 | # -- | ||
| 4 | font-size: ${12px}; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.bottom b/.emacs.d/mysnippets/text-mode/css-mode/mar.bottom new file mode 100644 index 0000000..9672f60 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.bottom | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : margin-bottom: ... | ||
| 3 | # -- | ||
| 4 | margin-bottom: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.left b/.emacs.d/mysnippets/text-mode/css-mode/mar.left new file mode 100644 index 0000000..414353e --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.left | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : margin-left: ... | ||
| 3 | # -- | ||
| 4 | margin-left: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.mar b/.emacs.d/mysnippets/text-mode/css-mode/mar.mar new file mode 100644 index 0000000..13354db --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.mar | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : margin: ... | ||
| 3 | # -- | ||
| 4 | margin: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.margin b/.emacs.d/mysnippets/text-mode/css-mode/mar.margin new file mode 100644 index 0000000..97de70c --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.margin | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : margin top right bottom left | ||
| 3 | # -- | ||
| 4 | margin: ${top} ${right} ${bottom} ${left}; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.right b/.emacs.d/mysnippets/text-mode/css-mode/mar.right new file mode 100644 index 0000000..47a4973 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.right | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : margin-right: ... | ||
| 3 | # -- | ||
| 4 | margin-right: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/mar.top b/.emacs.d/mysnippets/text-mode/css-mode/mar.top new file mode 100644 index 0000000..c805754 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/mar.top | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : margin-top: ... | ||
| 3 | # -- | ||
| 4 | margin-top: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.bottom b/.emacs.d/mysnippets/text-mode/css-mode/pad.bottom new file mode 100644 index 0000000..3b9495e --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.bottom | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : padding-bottom: ... | ||
| 3 | # -- | ||
| 4 | padding-bottom: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.left b/.emacs.d/mysnippets/text-mode/css-mode/pad.left new file mode 100644 index 0000000..ecae515 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.left | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : padding-left: ... | ||
| 3 | # -- | ||
| 4 | padding-left: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.pad b/.emacs.d/mysnippets/text-mode/css-mode/pad.pad new file mode 100644 index 0000000..ee3a682 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.pad | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : padding: ... | ||
| 3 | # -- | ||
| 4 | padding: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.padding b/.emacs.d/mysnippets/text-mode/css-mode/pad.padding new file mode 100644 index 0000000..c1009d3 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.padding | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : padding: top right bottom left | ||
| 3 | # -- | ||
| 4 | padding: ${top} ${right} ${bottom} ${left}; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.right b/.emacs.d/mysnippets/text-mode/css-mode/pad.right new file mode 100644 index 0000000..98a9e12 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.right | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : padding-right: ... | ||
| 3 | # -- | ||
| 4 | padding-right: $1; | ||
diff --git a/.emacs.d/mysnippets/text-mode/css-mode/pad.top b/.emacs.d/mysnippets/text-mode/css-mode/pad.top new file mode 100644 index 0000000..34987f6 --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/css-mode/pad.top | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #contributor : rejeep <johan.rejeep@gmail.com> | ||
| 2 | #name : padding-top: ... | ||
| 3 | # -- | ||
| 4 | padding-top: $1; | ||
