├── .gitignore ├── .npmignore ├── .npmrc ├── .tern-project ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── src ├── README.md └── commands.ts └── test └── test-commands.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .tern-port 3 | /test 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/.tern-project -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/src/README.md -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/src/commands.ts -------------------------------------------------------------------------------- /test/test-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProseMirror/prosemirror-commands/HEAD/test/test-commands.ts --------------------------------------------------------------------------------