├── .gitignore ├── GuideUI.sketch ├── Guides.sketchplugin └── Contents │ ├── Resources │ ├── icon.png │ └── icons │ │ ├── bottom-guide.png │ │ ├── bottom-guide@2x.png │ │ ├── close-control.png │ │ ├── close-control@2x.png │ │ ├── h-center-guide.png │ │ ├── h-center-guide@2x.png │ │ ├── left-guide.png │ │ ├── left-guide@2x.png │ │ ├── remove-all-guides.png │ │ ├── remove-all-guides@2x.png │ │ ├── right-guide.png │ │ ├── right-guide@2x.png │ │ ├── right-left-guides.png │ │ ├── right-left-guides@2x.png │ │ ├── separate.png │ │ ├── separate2.png │ │ ├── separate2@2x.png │ │ ├── separate@2x.png │ │ ├── top-bottom-guides.png │ │ ├── top-bottom-guides@2x.png │ │ ├── top-guide.png │ │ ├── top-guide@2x.png │ │ ├── triple-guides.png │ │ ├── triple-guides@2x.png │ │ ├── v-center-guide.png │ │ └── v-center-guide@2x.png │ └── Sketch │ ├── guides.js │ ├── library │ └── common.js │ └── manifest.json ├── README.md └── appcast.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/.gitignore -------------------------------------------------------------------------------- /GuideUI.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/GuideUI.sketch -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/bottom-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/bottom-guide.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/bottom-guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/bottom-guide@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/close-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/close-control.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/close-control@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/close-control@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/h-center-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/h-center-guide.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/h-center-guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/h-center-guide@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/left-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/left-guide.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/left-guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/left-guide@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/remove-all-guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/remove-all-guides.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/remove-all-guides@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/remove-all-guides@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/right-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/right-guide.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/right-guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/right-guide@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/right-left-guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/right-left-guides.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/right-left-guides@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/right-left-guides@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/separate.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/separate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/separate2.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/separate2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/separate2@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/separate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/separate@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/top-bottom-guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/top-bottom-guides.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/top-bottom-guides@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/top-bottom-guides@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/top-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/top-guide.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/top-guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/top-guide@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/triple-guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/triple-guides.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/triple-guides@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/triple-guides@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/v-center-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/v-center-guide.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Resources/icons/v-center-guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Resources/icons/v-center-guide@2x.png -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Sketch/guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Sketch/guides.js -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Sketch/library/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Sketch/library/common.js -------------------------------------------------------------------------------- /Guides.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/Guides.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luvmex/Sketch-Guides/HEAD/appcast.xml --------------------------------------------------------------------------------