├── .github └── workflows │ └── dispatch.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── README.md ├── commands.ts ├── comment.ts └── history.ts └── test ├── state.ts ├── test-commands.ts ├── test-comment.ts ├── test-history.ts └── webtest-commands.ts /.github/workflows/dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/.github/workflows/dispatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/src/README.md -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/src/comment.ts -------------------------------------------------------------------------------- /src/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/src/history.ts -------------------------------------------------------------------------------- /test/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/test/state.ts -------------------------------------------------------------------------------- /test/test-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/test/test-commands.ts -------------------------------------------------------------------------------- /test/test-comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/test/test-comment.ts -------------------------------------------------------------------------------- /test/test-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/test/test-history.ts -------------------------------------------------------------------------------- /test/webtest-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/commands/HEAD/test/webtest-commands.ts --------------------------------------------------------------------------------