├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierrc ├── .yarn └── releases │ └── yarn-berry.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.js ├── manifest.json ├── package.json ├── src ├── __tests__ │ ├── actions.spec.ts │ ├── test-helpers.ts │ └── utils.spec.ts ├── actions.ts ├── constants.ts ├── main.ts ├── settings.ts ├── state.ts └── utils.ts ├── styles.css ├── tsconfig.json ├── versions.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.10.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-berry.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/.yarn/releases/yarn-berry.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /src/__tests__/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/__tests__/test-helpers.ts -------------------------------------------------------------------------------- /src/__tests__/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/__tests__/utils.spec.ts -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/src/utils.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/versions.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhor/obsidian-sentence-navigator/HEAD/yarn.lock --------------------------------------------------------------------------------