├── .gitignore ├── LICENSE ├── Layers └── Toggle Layers.sketchplugin ├── Pages ├── View Next Page.sketchplugin └── View Previous Page.sketchplugin ├── README.md ├── Text └── Split Combine Text.sketchplugin │ └── Contents │ └── Sketch │ ├── combine.cocoascript │ ├── manifest.json │ └── split.cocoascript └── sketchpack.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | TODO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Layers/Toggle Layers.sketchplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/Layers/Toggle Layers.sketchplugin -------------------------------------------------------------------------------- /Pages/View Next Page.sketchplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/Pages/View Next Page.sketchplugin -------------------------------------------------------------------------------- /Pages/View Previous Page.sketchplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/Pages/View Previous Page.sketchplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/README.md -------------------------------------------------------------------------------- /Text/Split Combine Text.sketchplugin/Contents/Sketch/combine.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/Text/Split Combine Text.sketchplugin/Contents/Sketch/combine.cocoascript -------------------------------------------------------------------------------- /Text/Split Combine Text.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/Text/Split Combine Text.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Text/Split Combine Text.sketchplugin/Contents/Sketch/split.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/Text/Split Combine Text.sketchplugin/Contents/Sketch/split.cocoascript -------------------------------------------------------------------------------- /sketchpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwayne/jw-sketch-plugins/HEAD/sketchpack.json --------------------------------------------------------------------------------