├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Open Selection in GitHub.workflow └── Contents │ ├── Info.plist │ ├── QuickLook │ └── Preview.png │ └── document.wflow └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ec5/read-only-coding/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ec5/read-only-coding/HEAD/LICENSE -------------------------------------------------------------------------------- /Open Selection in GitHub.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ec5/read-only-coding/HEAD/Open Selection in GitHub.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /Open Selection in GitHub.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ec5/read-only-coding/HEAD/Open Selection in GitHub.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /Open Selection in GitHub.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ec5/read-only-coding/HEAD/Open Selection in GitHub.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ec5/read-only-coding/HEAD/README.md --------------------------------------------------------------------------------