├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .sass-cache └── 81e5fe526dd625f9fa15f57a8c7f6dcff015477c │ ├── animation.scssc │ ├── base.scssc │ ├── button.scssc │ ├── item.scssc │ ├── main.scssc │ ├── noshortcut.scssc │ ├── settingapp.scssc │ ├── shortcut.scssc │ ├── toggle.scssc │ ├── usersettings.scssc │ └── vars.scssc ├── README.md ├── assets ├── arrow.png ├── icon.png ├── icon@2x.png └── search.svg ├── build ├── icon.icns └── icon.ico ├── docs └── CONTRIBUTING.md ├── faq.html ├── index.html ├── index.js ├── main.css ├── main.css.map ├── package-lock.json ├── package.json ├── renderer.js ├── sass ├── animation.scss ├── base.scss ├── button.scss ├── main.scss ├── noshortcut.scss ├── settingapp.scss ├── shortcut.scss ├── toggle.scss ├── usersettings.scss └── vars.scss ├── screenshot ├── app-screen.png └── logo.png ├── setting.js ├── shortcuts ├── Adobe XD CC.yml ├── After Effects CC.yml ├── Atom.yml ├── Avocode.yml ├── CINEMA 4D Lite.yml ├── Code.yml ├── Figma.yml ├── Finder.yml ├── Framer.yml ├── Glyphs.yml ├── Google Chrome.yml ├── Illustrator CC.yml ├── Indesign CC.yaml ├── MacVim.yml ├── Microsoft Excel.yml ├── Microsoft PowerPoint.yml ├── Microsoft Word.yml ├── Newton.yml ├── Notion.yml ├── Opera.yml ├── Pages.yml ├── Photos.yml ├── Photoshop CC.yml ├── PhpStorm.yml ├── Pixelmator.yml ├── Pretzel.yml ├── Principle.yml ├── Quiver.yml ├── RoboFont.yml ├── Safari.yml ├── Simplenote.yml ├── Sketch.yml ├── Slack.yml ├── Sourcetree.yml ├── Sublime Text.yml ├── Terminal.yml ├── Wire.yml ├── Wunderlist.yml ├── Xcode.yml ├── Zeplin.yml ├── hr.yml └── iTerm2.yml ├── supported-apps.html └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Version [e.g. 22] 29 | 30 | **Additional context** 31 | Add any other context about the problem here. 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | .DS_Store 4 | dist -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/animation.scssc: -------------------------------------------------------------------------------- 1 | 3.5.6 2 | da64db0eb932e164ed37b164ddb7da3672c9928b 3 | o:Sass::Tree::RootNode:@children[o:Sass::Tree::DirectiveNode :@value[I"@keyframes :ETI"staggering; T: 4 | @tabsi ;[o:Sass::Tree::RuleNode: 5 | @rule[I"0%; T:@parsed_rules0:@selector_source_rangeo:Sass::Source::Range :@start_poso:Sass::Source::Position: 6 | @linei:@offseti: @end_poso;;i;i: 7 | @fileI"sass/animation.scss; T:@importero: Sass::Importers::Filesystem: 8 | @rootI"./Users/cheching/Projects/Personal/pretzel; T:@real_rootI"./Users/cheching/Projects/Personal/pretzel; T:@same_name_warningso:Set: 9 | @hash} F; 10 | i ;[o:Sass::Tree::PropNode: 11 | @name[I"opacity; T;[o: Sass::Script::Tree::Literal;o: Sass::Script::Value::String ;I"0; T: @options{ : 12 | @type:identifier:"@deprecated_interp_equivalent0;i:@source_rangeo; ;o;;i;i;o;;i;i;@;@; 13 | i :@prop_syntax:new;[ :@filename0;!@ ;i;%o; ;o;;i;i 14 | ;o;;i;i;@;@:@name_source_rangeo; ;@&;o;;i;i;@;@:@value_source_rangeo; ;o;;i;i;@';@;@;(0;!@ ;i;%o; ;@;o;;i;i;@;@:@has_childrenTo;;[I" 100%; T; 0;o; ;o;;i 15 | ;i;o;;i 16 | ;i ;@;@; 17 | i ;[o;;[I"opacity; T;[o;;o; ;I"1; T;!@ ;";#;$0;i;%o; ;o;;i;i;o;;i;i;@;@; 18 | i ;&;';[ ;(0;!@ ;i;%o; ;o;;i;i 19 | ;o;;i;i;@;@;)o; ;@A;o;;i;i;@;@;*o; ;o;;i;i;@B;@;@;(0;!@ ;i 20 | ;%o; ;@2;o;;i 21 | ;i ;@;@;+T;(0;!@ ;+T;i;%o; ;o;;i;i;o;;i ;i;@;@;(0;!@ :@templateI"W@keyframes staggering { 22 | 0% { 23 | opacity: 0; 24 | } 25 | 100% { 26 | opacity: 1; 27 | } 28 | } 29 | ; T;i;%o; ;o;;i;i;o;;i;i;@;@;+T -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/base.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/base.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/button.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/button.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/item.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/item.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/main.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/main.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/noshortcut.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/noshortcut.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/settingapp.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/settingapp.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/shortcut.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/shortcut.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/toggle.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/toggle.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/usersettings.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/usersettings.scssc -------------------------------------------------------------------------------- /.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/vars.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiechen/pretzel/a1093137270ab57fe32e739d57a1c71304b60214/.sass-cache/81e5fe526dd625f9fa15f57a8c7f6dcff015477c/vars.scssc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
{{ question.a }}
29 |No shortcuts found for
${name}
{{ app.name }}
24 |