├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE.txt ├── README.md ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── src ├── chords │ ├── chord-manager.ts │ ├── chord-utils.ts │ ├── command-chord.ts │ ├── file-chord.ts │ ├── template-chord.ts │ └── text-chord.ts ├── main.ts ├── settings │ ├── settings-tab.ts │ └── settings.ts ├── suggesters │ ├── command-suggester.ts │ ├── file-suggester.ts │ └── suggest.ts └── utils │ └── string.extensions.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/package.json -------------------------------------------------------------------------------- /src/chords/chord-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/chords/chord-manager.ts -------------------------------------------------------------------------------- /src/chords/chord-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/chords/chord-utils.ts -------------------------------------------------------------------------------- /src/chords/command-chord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/chords/command-chord.ts -------------------------------------------------------------------------------- /src/chords/file-chord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/chords/file-chord.ts -------------------------------------------------------------------------------- /src/chords/template-chord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/chords/template-chord.ts -------------------------------------------------------------------------------- /src/chords/text-chord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/chords/text-chord.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/settings/settings-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/settings/settings-tab.ts -------------------------------------------------------------------------------- /src/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/settings/settings.ts -------------------------------------------------------------------------------- /src/suggesters/command-suggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/suggesters/command-suggester.ts -------------------------------------------------------------------------------- /src/suggesters/file-suggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/suggesters/file-suggester.ts -------------------------------------------------------------------------------- /src/suggesters/suggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/suggesters/suggest.ts -------------------------------------------------------------------------------- /src/utils/string.extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/src/utils/string.extensions.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConnorMeyers/obsidian-chorded-hotkeys/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------