├── .build-and-release.sh ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── caches │ ├── devdocs-keyword-slug-map.json │ └── obsidian-help-index.json ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── alfred-workflow-release.yml │ ├── markdownlint.yml │ ├── pr-title.yml │ ├── stale-bot.yml │ ├── update-devdocs.yml │ └── update-obsidian-help-index.yml ├── .gitignore ├── .markdownlint.yaml ├── .rsync-exclude ├── .typos.toml ├── 02AF1097-A098-43E8-91E4-28B34C6C010C.png ├── 090678C4-E32D-408A-A3F2-88B39DCCE851.png ├── 110DF925-B50C-4ABC-B412-2F7C48A78D72.png ├── 321BD266-1E62-4C75-A792-85239F1268B0.png ├── 33BD334F-B73B-4462-9E9E-0B53BBC46B25.png ├── 3CA7F398-9E2A-467B-B1B1-CC0DBBCB20A5.png ├── 3F1227C0-7373-4B26-BADB-05F279D75A62.png ├── 3F695A74-EC6B-4436-9063-9A618A8CC0B8.png ├── 582225D7-8F6C-468C-A212-86ACFA5F026C.png ├── 5A2D4239-FC30-482F-831B-D2E261B44B7F.png ├── 5D0C789F-E59F-4435-8AB1-84CBA3CF65DC.png ├── 71F9A459-55CC-41D5-A1FA-4424B696D4E3.png ├── 807968C5-83D0-4F80-8188-636A8D536DBE.png ├── A89D07AD-BB4E-4D63-B7B7-DDB763334AEC.png ├── B88D572C-2770-41B2-B7BD-FF771975A4E8.png ├── BE9F5DBB-FD56-4FB5-8D27-682A7E1D3BFA.png ├── C577433C-1270-4413-8DFB-D11A25A2484C.png ├── E0497D01-2949-468B-B5C6-D6837344A30B.png ├── FC4A9CCB-0458-42DE-9CFE-4110B7E0CADF.png ├── Justfile ├── LICENSE ├── README.md ├── icon.png ├── info.plist └── scripts ├── devdocs ├── icons │ ├── README.md │ ├── angularjs.png │ ├── bash.png │ ├── bootstrap.png │ ├── c++.png │ ├── cani.png │ ├── css.png │ ├── docker.png │ ├── dom.png │ ├── electron.png │ ├── esbuild.png │ ├── git.png │ ├── godot.png │ ├── hs.png │ ├── html.png │ ├── java.png │ ├── jq.png │ ├── js.png │ ├── jsdoc.png │ ├── k8s.png │ ├── lua.png │ ├── man.png │ ├── mt.png │ ├── ng.png │ ├── node.png │ ├── np.png │ ├── npm.png │ ├── pd.png │ ├── pg.png │ ├── py.png │ ├── react.png │ ├── spring_boot.png │ ├── svelte.png │ └── ts.png ├── open-at-original-site.js ├── search-devdocs.js └── update-devdocs.mjs ├── extra-utilities ├── .ignore ├── appid.js ├── appid.sh ├── apple-keycodes.json ├── applescript-dictionaries.js ├── color-svgs │ ├── aliceblue.svg │ ├── antiquewhite.svg │ ├── aqua.svg │ ├── aquamarine.svg │ ├── azure.svg │ ├── beige.svg │ ├── bisque.svg │ ├── black.svg │ ├── blanchedalmond.svg │ ├── blue.svg │ ├── blueviolet.svg │ ├── brown.svg │ ├── burlywood.svg │ ├── cadetblue.svg │ ├── chartreuse.svg │ ├── chocolate.svg │ ├── coral.svg │ ├── cornflowerblue.svg │ ├── cornsilk.svg │ ├── crimson.svg │ ├── cyan.svg │ ├── darkblue.svg │ ├── darkcyan.svg │ ├── darkgoldenrod.svg │ ├── darkgray.svg │ ├── darkgreen.svg │ ├── darkgrey.svg │ ├── darkkhaki.svg │ ├── darkmagenta.svg │ ├── darkolivegreen.svg │ ├── darkorange.svg │ ├── darkorchid.svg │ ├── darkred.svg │ ├── darksalmon.svg │ ├── darkseagreen.svg │ ├── darkslateblue.svg │ ├── darkslategray.svg │ ├── darkslategrey.svg │ ├── darkturquoise.svg │ ├── darkviolet.svg │ ├── deeppink.svg │ ├── deepskyblue.svg │ ├── dimgray.svg │ ├── dimgrey.svg │ ├── dodgerblue.svg │ ├── firebrick.svg │ ├── floralwhite.svg │ ├── forestgreen.svg │ ├── fuchsia.svg │ ├── gainsboro.svg │ ├── ghostwhite.svg │ ├── gold.svg │ ├── goldenrod.svg │ ├── gray.svg │ ├── green.svg │ ├── greenyellow.svg │ ├── grey.svg │ ├── honeydew.svg │ ├── hotpink.svg │ ├── indianred.svg │ ├── indigo.svg │ ├── ivory.svg │ ├── khaki.svg │ ├── lavender.svg │ ├── lavenderblush.svg │ ├── lawngreen.svg │ ├── lemonchiffon.svg │ ├── lightblue.svg │ ├── lightcoral.svg │ ├── lightcyan.svg │ ├── lightgoldenrodyellow.svg │ ├── lightgray.svg │ ├── lightgreen.svg │ ├── lightgrey.svg │ ├── lightpink.svg │ ├── lightsalmon.svg │ ├── lightseagreen.svg │ ├── lightskyblue.svg │ ├── lightslategray.svg │ ├── lightslategrey.svg │ ├── lightsteelblue.svg │ ├── lightyellow.svg │ ├── lime.svg │ ├── limegreen.svg │ ├── linen.svg │ ├── magenta.svg │ ├── maroon.svg │ ├── mediumaquamarine.svg │ ├── mediumblue.svg │ ├── mediumorchid.svg │ ├── mediumpurple.svg │ ├── mediumseagreen.svg │ ├── mediumslateblue.svg │ ├── mediumspringgreen.svg │ ├── mediumturquoise.svg │ ├── mediumvioletred.svg │ ├── midnightblue.svg │ ├── mintcream.svg │ ├── mistyrose.svg │ ├── moccasin.svg │ ├── navajowhite.svg │ ├── navy.svg │ ├── oldlace.svg │ ├── olive.svg │ ├── olivedrab.svg │ ├── orange.svg │ ├── orangered.svg │ ├── orchid.svg │ ├── palegoldenrod.svg │ ├── palegreen.svg │ ├── paleturquoise.svg │ ├── palevioletred.svg │ ├── papayawhip.svg │ ├── peachpuff.svg │ ├── peru.svg │ ├── pink.svg │ ├── plum.svg │ ├── powderblue.svg │ ├── purple.svg │ ├── rebeccapurple.svg │ ├── red.svg │ ├── rosybrown.svg │ ├── royalblue.svg │ ├── saddlebrown.svg │ ├── salmon.svg │ ├── sandybrown.svg │ ├── seagreen.svg │ ├── seashell.svg │ ├── sienna.svg │ ├── silver.svg │ ├── skyblue.svg │ ├── slateblue.svg │ ├── slategray.svg │ ├── slategrey.svg │ ├── snow.svg │ ├── springgreen.svg │ ├── steelblue.svg │ ├── tan.svg │ ├── teal.svg │ ├── thistle.svg │ ├── tomato.svg │ ├── turquoise.svg │ ├── violet.svg │ ├── wheat.svg │ ├── white.svg │ ├── whitesmoke.svg │ ├── yellow.svg │ └── yellowgreen.svg ├── get-window-information.applescript ├── http-status-codes.json ├── named-css-colors.csv ├── named-css-colors.js ├── reload-cache.js └── sounds-preview.js └── manual-docs-searches ├── CodeMirror.png ├── biome-docs-search.js ├── build-obsidian-help-index.mjs ├── ddg-help.js ├── obsi-developer-docs-search.js ├── pandoc-docs.js ├── ruff-rules.js ├── search-man-pages.js ├── search-manpage-sections.js ├── shellcheck-wiki.js ├── wezterm-docs-search.js └── yq-docs.js /.build-and-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.build-and-release.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/caches/devdocs-keyword-slug-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/caches/devdocs-keyword-slug-map.json -------------------------------------------------------------------------------- /.github/caches/obsidian-help-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/caches/obsidian-help-index.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/alfred-workflow-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/workflows/alfred-workflow-release.yml -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.github/workflows/update-devdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/workflows/update-devdocs.yml -------------------------------------------------------------------------------- /.github/workflows/update-obsidian-help-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.github/workflows/update-obsidian-help-index.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.rsync-exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.rsync-exclude -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/.typos.toml -------------------------------------------------------------------------------- /02AF1097-A098-43E8-91E4-28B34C6C010C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/02AF1097-A098-43E8-91E4-28B34C6C010C.png -------------------------------------------------------------------------------- /090678C4-E32D-408A-A3F2-88B39DCCE851.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/090678C4-E32D-408A-A3F2-88B39DCCE851.png -------------------------------------------------------------------------------- /110DF925-B50C-4ABC-B412-2F7C48A78D72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/110DF925-B50C-4ABC-B412-2F7C48A78D72.png -------------------------------------------------------------------------------- /321BD266-1E62-4C75-A792-85239F1268B0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/321BD266-1E62-4C75-A792-85239F1268B0.png -------------------------------------------------------------------------------- /33BD334F-B73B-4462-9E9E-0B53BBC46B25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/33BD334F-B73B-4462-9E9E-0B53BBC46B25.png -------------------------------------------------------------------------------- /3CA7F398-9E2A-467B-B1B1-CC0DBBCB20A5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/3CA7F398-9E2A-467B-B1B1-CC0DBBCB20A5.png -------------------------------------------------------------------------------- /3F1227C0-7373-4B26-BADB-05F279D75A62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/3F1227C0-7373-4B26-BADB-05F279D75A62.png -------------------------------------------------------------------------------- /3F695A74-EC6B-4436-9063-9A618A8CC0B8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/3F695A74-EC6B-4436-9063-9A618A8CC0B8.png -------------------------------------------------------------------------------- /582225D7-8F6C-468C-A212-86ACFA5F026C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/582225D7-8F6C-468C-A212-86ACFA5F026C.png -------------------------------------------------------------------------------- /5A2D4239-FC30-482F-831B-D2E261B44B7F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/5A2D4239-FC30-482F-831B-D2E261B44B7F.png -------------------------------------------------------------------------------- /5D0C789F-E59F-4435-8AB1-84CBA3CF65DC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/5D0C789F-E59F-4435-8AB1-84CBA3CF65DC.png -------------------------------------------------------------------------------- /71F9A459-55CC-41D5-A1FA-4424B696D4E3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/71F9A459-55CC-41D5-A1FA-4424B696D4E3.png -------------------------------------------------------------------------------- /807968C5-83D0-4F80-8188-636A8D536DBE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/807968C5-83D0-4F80-8188-636A8D536DBE.png -------------------------------------------------------------------------------- /A89D07AD-BB4E-4D63-B7B7-DDB763334AEC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/A89D07AD-BB4E-4D63-B7B7-DDB763334AEC.png -------------------------------------------------------------------------------- /B88D572C-2770-41B2-B7BD-FF771975A4E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/B88D572C-2770-41B2-B7BD-FF771975A4E8.png -------------------------------------------------------------------------------- /BE9F5DBB-FD56-4FB5-8D27-682A7E1D3BFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/BE9F5DBB-FD56-4FB5-8D27-682A7E1D3BFA.png -------------------------------------------------------------------------------- /C577433C-1270-4413-8DFB-D11A25A2484C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/C577433C-1270-4413-8DFB-D11A25A2484C.png -------------------------------------------------------------------------------- /E0497D01-2949-468B-B5C6-D6837344A30B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/E0497D01-2949-468B-B5C6-D6837344A30B.png -------------------------------------------------------------------------------- /FC4A9CCB-0458-42DE-9CFE-4110B7E0CADF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/FC4A9CCB-0458-42DE-9CFE-4110B7E0CADF.png -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/icon.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/info.plist -------------------------------------------------------------------------------- /scripts/devdocs/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/README.md -------------------------------------------------------------------------------- /scripts/devdocs/icons/angularjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/angularjs.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/bash.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/bootstrap.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/c++.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/cani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/cani.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/css.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/docker.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/dom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/dom.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/electron.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/esbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/esbuild.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/git.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/godot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/godot.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/hs.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/html.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/java.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/jq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/jq.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/js.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/jsdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/jsdoc.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/k8s.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/lua.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/man.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/mt.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/ng.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/node.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/np.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/npm.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/pd.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/pg.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/py.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/react.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/spring_boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/spring_boot.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/svelte.png -------------------------------------------------------------------------------- /scripts/devdocs/icons/ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/icons/ts.png -------------------------------------------------------------------------------- /scripts/devdocs/open-at-original-site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/open-at-original-site.js -------------------------------------------------------------------------------- /scripts/devdocs/search-devdocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/search-devdocs.js -------------------------------------------------------------------------------- /scripts/devdocs/update-devdocs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/devdocs/update-devdocs.mjs -------------------------------------------------------------------------------- /scripts/extra-utilities/.ignore: -------------------------------------------------------------------------------- 1 | color-svgs/* 2 | -------------------------------------------------------------------------------- /scripts/extra-utilities/appid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/appid.js -------------------------------------------------------------------------------- /scripts/extra-utilities/appid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/appid.sh -------------------------------------------------------------------------------- /scripts/extra-utilities/apple-keycodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/apple-keycodes.json -------------------------------------------------------------------------------- /scripts/extra-utilities/applescript-dictionaries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/applescript-dictionaries.js -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/aliceblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/aliceblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/antiquewhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/antiquewhite.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/aqua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/aqua.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/aquamarine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/aquamarine.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/azure.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/beige.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/beige.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/bisque.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/bisque.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/black.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/blanchedalmond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/blanchedalmond.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/blue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/blueviolet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/blueviolet.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/brown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/brown.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/burlywood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/burlywood.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/cadetblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/cadetblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/chartreuse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/chartreuse.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/chocolate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/chocolate.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/coral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/coral.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/cornflowerblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/cornflowerblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/cornsilk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/cornsilk.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/crimson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/crimson.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/cyan.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkcyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkcyan.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkgoldenrod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkgoldenrod.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkgray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkgray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkgreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkgrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkgrey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkkhaki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkkhaki.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkmagenta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkmagenta.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkolivegreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkolivegreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkorange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkorange.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkorchid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkorchid.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkred.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darksalmon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darksalmon.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkseagreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkseagreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkslateblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkslateblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkslategray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkslategray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkslategrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkslategrey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkturquoise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkturquoise.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/darkviolet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/darkviolet.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/deeppink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/deeppink.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/deepskyblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/deepskyblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/dimgray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/dimgray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/dimgrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/dimgrey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/dodgerblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/dodgerblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/firebrick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/firebrick.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/floralwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/floralwhite.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/forestgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/forestgreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/fuchsia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/fuchsia.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/gainsboro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/gainsboro.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/ghostwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/ghostwhite.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/gold.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/goldenrod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/goldenrod.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/gray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/green.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/greenyellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/greenyellow.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/grey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/honeydew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/honeydew.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/hotpink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/hotpink.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/indianred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/indianred.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/indigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/indigo.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/ivory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/ivory.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/khaki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/khaki.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lavender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lavender.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lavenderblush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lavenderblush.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lawngreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lawngreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lemonchiffon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lemonchiffon.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightcoral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightcoral.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightcyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightcyan.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightgoldenrodyellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightgoldenrodyellow.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightgray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightgray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightgreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightgrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightgrey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightpink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightpink.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightsalmon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightsalmon.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightseagreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightseagreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightskyblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightskyblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightslategray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightslategray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightslategrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightslategrey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightsteelblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightsteelblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lightyellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lightyellow.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/lime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/lime.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/limegreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/limegreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/linen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/linen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/magenta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/magenta.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/maroon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/maroon.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumaquamarine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumaquamarine.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumorchid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumorchid.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumpurple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumpurple.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumseagreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumseagreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumslateblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumslateblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumspringgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumspringgreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumturquoise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumturquoise.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mediumvioletred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mediumvioletred.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/midnightblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/midnightblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mintcream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mintcream.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/mistyrose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/mistyrose.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/moccasin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/moccasin.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/navajowhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/navajowhite.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/navy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/navy.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/oldlace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/oldlace.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/olive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/olive.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/olivedrab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/olivedrab.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/orange.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/orangered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/orangered.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/orchid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/orchid.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/palegoldenrod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/palegoldenrod.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/palegreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/palegreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/paleturquoise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/paleturquoise.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/palevioletred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/palevioletred.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/papayawhip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/papayawhip.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/peachpuff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/peachpuff.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/peru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/peru.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/pink.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/plum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/plum.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/powderblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/powderblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/purple.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/rebeccapurple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/rebeccapurple.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/red.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/rosybrown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/rosybrown.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/royalblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/royalblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/saddlebrown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/saddlebrown.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/salmon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/salmon.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/sandybrown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/sandybrown.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/seagreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/seagreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/seashell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/seashell.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/sienna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/sienna.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/silver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/silver.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/skyblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/skyblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/slateblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/slateblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/slategray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/slategray.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/slategrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/slategrey.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/snow.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/springgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/springgreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/steelblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/steelblue.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/tan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/tan.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/teal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/teal.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/thistle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/thistle.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/tomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/tomato.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/turquoise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/turquoise.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/violet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/violet.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/wheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/wheat.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/white.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/whitesmoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/whitesmoke.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/yellow.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/color-svgs/yellowgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/color-svgs/yellowgreen.svg -------------------------------------------------------------------------------- /scripts/extra-utilities/get-window-information.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/get-window-information.applescript -------------------------------------------------------------------------------- /scripts/extra-utilities/http-status-codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/http-status-codes.json -------------------------------------------------------------------------------- /scripts/extra-utilities/named-css-colors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/named-css-colors.csv -------------------------------------------------------------------------------- /scripts/extra-utilities/named-css-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/named-css-colors.js -------------------------------------------------------------------------------- /scripts/extra-utilities/reload-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/reload-cache.js -------------------------------------------------------------------------------- /scripts/extra-utilities/sounds-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/extra-utilities/sounds-preview.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/CodeMirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/CodeMirror.png -------------------------------------------------------------------------------- /scripts/manual-docs-searches/biome-docs-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/biome-docs-search.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/build-obsidian-help-index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/build-obsidian-help-index.mjs -------------------------------------------------------------------------------- /scripts/manual-docs-searches/ddg-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/ddg-help.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/obsi-developer-docs-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/obsi-developer-docs-search.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/pandoc-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/pandoc-docs.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/ruff-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/ruff-rules.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/search-man-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/search-man-pages.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/search-manpage-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/search-manpage-sections.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/shellcheck-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/shellcheck-wiki.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/wezterm-docs-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/wezterm-docs-search.js -------------------------------------------------------------------------------- /scripts/manual-docs-searches/yq-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-docs-searches/HEAD/scripts/manual-docs-searches/yq-docs.js --------------------------------------------------------------------------------