├── .github └── workflows │ ├── main.yml │ └── release-please.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── manifest.json ├── package.json ├── rollup.config.js ├── screenshots └── 1.gif ├── src ├── helpers │ ├── cm.ts │ ├── helpers.test.ts │ ├── helpers.ts │ ├── search-results.ts │ ├── string.test.ts │ ├── string.ts │ └── tfile.ts ├── main.ts └── sequences │ └── sequences.ts ├── tsconfig.json └── versions.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/rollup.config.js -------------------------------------------------------------------------------- /screenshots/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/screenshots/1.gif -------------------------------------------------------------------------------- /src/helpers/cm.ts: -------------------------------------------------------------------------------- 1 | // CodeMirror specific helpers 2 | -------------------------------------------------------------------------------- /src/helpers/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/helpers/helpers.test.ts -------------------------------------------------------------------------------- /src/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/helpers/helpers.ts -------------------------------------------------------------------------------- /src/helpers/search-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/helpers/search-results.ts -------------------------------------------------------------------------------- /src/helpers/string.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helpers/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/helpers/string.ts -------------------------------------------------------------------------------- /src/helpers/tfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/helpers/tfile.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/sequences/sequences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/src/sequences/sequences.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjackphil/obsidian-text-expand/HEAD/versions.json --------------------------------------------------------------------------------