├── .gitignore ├── README.md └── repeat.sketchplugin └── Contents └── Sketch ├── const └── library.js ├── duplicate.js └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | iconfont.sketchplugin/Contents/Resources/bundle/* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-repeat/HEAD/README.md -------------------------------------------------------------------------------- /repeat.sketchplugin/Contents/Sketch/const/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-repeat/HEAD/repeat.sketchplugin/Contents/Sketch/const/library.js -------------------------------------------------------------------------------- /repeat.sketchplugin/Contents/Sketch/duplicate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-repeat/HEAD/repeat.sketchplugin/Contents/Sketch/duplicate.js -------------------------------------------------------------------------------- /repeat.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-repeat/HEAD/repeat.sketchplugin/Contents/Sketch/manifest.json --------------------------------------------------------------------------------