Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 76c115b

Browse files
committed
README language tweaks, moved resolution into units directory.
1 parent f38c06f commit 76c115b

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ As opposed to something like [Emmet](http://emmet.io/) (which is an absolutely w
1111
## Approach
1212

1313
### Modular
14-
Because I am ~~bad at coding~~ a fan of modular-based approaches, each snippet is a self-contained file so the project can be a little more adaptable and portable for future efforts. This project's origin was a [TextMate](http://macromates.com/) snippet library, after all
14+
Because I am ~~bad at coding~~ a fan of modular-based approaches, each snippet is a self-contained file so the project can be a little more adaptable, expandable, and mallable with future efforts. This project's origin was a [TextMate](http://macromates.com/) snippet library, so there's that.
1515

1616
### Commenting and legibility
17-
Verbosity is nice. Major HTML sectioning elements and complicated embeds/forms/etc. have start of/end of commenting to help when wayfinding when coding or inspecting. Remove to shave size off for larger-scale sites.
17+
Verbosity is nice. Major HTML sectioning elements and complicated embeds/forms/etc. have start of/end of commenting to help when wayfinding when coding or inspecting.
1818

19-
Indentation is generous. Space is cheap, should be minified, and code written with legibility in mind makes for easier understanding and interpretation.
19+
Indentation is generous. Space is cheap, should be minified, and code written with legibility and consistency in mind makes for easier understanding and interpretation.
2020

2121
### Snippet ordering and naming
2222
Sublime lists snippets with a common Tab Trigger in alphabetical order. Each snippet's filename has an `xx-name-attribute` convention, to allow for manual ordering of snippets. Commonly used code patterns are put first, but alternatives are always available.

css/misc/resolution/dpcm.sublime-snippet renamed to css/misc/units/resolution/dpcm.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<content><![CDATA[
33
dpcm
44
]]></content>
5-
<tabTrigger>res</tabTrigger>
5+
<tabTrigger>m</tabTrigger>
66
<scope>constant.other.unit.sass</scope>
77
<description>dpcm</description>
88
</snippet>

sass/misc/resolution/dpi.sublime-snippet renamed to css/misc/units/resolution/dpi.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<content><![CDATA[
33
dpi
44
]]></content>
5-
<tabTrigger>res</tabTrigger>
5+
<tabTrigger>m</tabTrigger>
66
<scope>constant.other.unit.sass</scope>
77
<description>dpi</description>
88
</snippet>

css/misc/resolution/dppx.sublime-snippet renamed to css/misc/units/resolution/dppx.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<content><![CDATA[
33
dppx
44
]]></content>
5-
<tabTrigger>res</tabTrigger>
5+
<tabTrigger>m</tabTrigger>
66
<scope>constant.other.unit.sass</scope>
77
<description>dppx</description>
88
</snippet>

sass/misc/resolution/dpcm.sublime-snippet renamed to sass/misc/units/resolution/dpcm.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<content><![CDATA[
33
dpcm
44
]]></content>
5-
<tabTrigger>res</tabTrigger>
5+
<tabTrigger>m</tabTrigger>
66
<scope>constant.other.unit.sass</scope>
77
<description>dpcm</description>
88
</snippet>

css/misc/resolution/dpi.sublime-snippet renamed to sass/misc/units/resolution/dpi.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<content><![CDATA[
33
dpi
44
]]></content>
5-
<tabTrigger>res</tabTrigger>
5+
<tabTrigger>m</tabTrigger>
66
<scope>constant.other.unit.sass</scope>
77
<description>dpi</description>
88
</snippet>

sass/misc/resolution/dppx.sublime-snippet renamed to sass/misc/units/resolution/dppx.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<content><![CDATA[
33
dppx
44
]]></content>
5-
<tabTrigger>res</tabTrigger>
5+
<tabTrigger>m</tabTrigger>
66
<scope>constant.other.unit.sass</scope>
77
<description>dppx</description>
88
</snippet>

0 commit comments

Comments
 (0)