├── .github └── workflows │ └── dispatch.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── README.md ├── active-line.ts ├── attributes.ts ├── bidi.ts ├── blockview.ts ├── browser.ts ├── buildview.ts ├── contentview.ts ├── cursor.ts ├── decoration.ts ├── dialog.ts ├── docview.ts ├── dom.ts ├── domchange.ts ├── domobserver.ts ├── domreader.ts ├── draw-selection.ts ├── dropcursor.ts ├── editcontext.d.ts ├── editorview.ts ├── extension.ts ├── gutter.ts ├── heightmap.ts ├── highlight-space.ts ├── index.ts ├── inlineview.ts ├── input.ts ├── keymap.ts ├── layer.ts ├── matchdecorator.ts ├── panel.ts ├── placeholder.ts ├── rectangular-selection.ts ├── scrollpastend.ts ├── special-chars.ts ├── theme.ts ├── tooltip.ts └── viewstate.ts └── test ├── tempview.ts ├── test-heightmap.ts ├── webtest-bidi.ts ├── webtest-composition.ts ├── webtest-coords.ts ├── webtest-direction.ts ├── webtest-domchange.ts ├── webtest-draw-decoration.ts ├── webtest-draw.ts ├── webtest-events.ts ├── webtest-extension.ts ├── webtest-hover.ts └── webtest-motion.ts /.github/workflows/dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/.github/workflows/dispatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/README.md -------------------------------------------------------------------------------- /src/active-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/active-line.ts -------------------------------------------------------------------------------- /src/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/attributes.ts -------------------------------------------------------------------------------- /src/bidi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/bidi.ts -------------------------------------------------------------------------------- /src/blockview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/blockview.ts -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/browser.ts -------------------------------------------------------------------------------- /src/buildview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/buildview.ts -------------------------------------------------------------------------------- /src/contentview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/contentview.ts -------------------------------------------------------------------------------- /src/cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/cursor.ts -------------------------------------------------------------------------------- /src/decoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/decoration.ts -------------------------------------------------------------------------------- /src/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/dialog.ts -------------------------------------------------------------------------------- /src/docview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/docview.ts -------------------------------------------------------------------------------- /src/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/dom.ts -------------------------------------------------------------------------------- /src/domchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/domchange.ts -------------------------------------------------------------------------------- /src/domobserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/domobserver.ts -------------------------------------------------------------------------------- /src/domreader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/domreader.ts -------------------------------------------------------------------------------- /src/draw-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/draw-selection.ts -------------------------------------------------------------------------------- /src/dropcursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/dropcursor.ts -------------------------------------------------------------------------------- /src/editcontext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/editcontext.d.ts -------------------------------------------------------------------------------- /src/editorview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/editorview.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/gutter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/gutter.ts -------------------------------------------------------------------------------- /src/heightmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/heightmap.ts -------------------------------------------------------------------------------- /src/highlight-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/highlight-space.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inlineview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/inlineview.ts -------------------------------------------------------------------------------- /src/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/input.ts -------------------------------------------------------------------------------- /src/keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/keymap.ts -------------------------------------------------------------------------------- /src/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/layer.ts -------------------------------------------------------------------------------- /src/matchdecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/matchdecorator.ts -------------------------------------------------------------------------------- /src/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/panel.ts -------------------------------------------------------------------------------- /src/placeholder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/placeholder.ts -------------------------------------------------------------------------------- /src/rectangular-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/rectangular-selection.ts -------------------------------------------------------------------------------- /src/scrollpastend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/scrollpastend.ts -------------------------------------------------------------------------------- /src/special-chars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/special-chars.ts -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/tooltip.ts -------------------------------------------------------------------------------- /src/viewstate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/src/viewstate.ts -------------------------------------------------------------------------------- /test/tempview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/tempview.ts -------------------------------------------------------------------------------- /test/test-heightmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/test-heightmap.ts -------------------------------------------------------------------------------- /test/webtest-bidi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-bidi.ts -------------------------------------------------------------------------------- /test/webtest-composition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-composition.ts -------------------------------------------------------------------------------- /test/webtest-coords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-coords.ts -------------------------------------------------------------------------------- /test/webtest-direction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-direction.ts -------------------------------------------------------------------------------- /test/webtest-domchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-domchange.ts -------------------------------------------------------------------------------- /test/webtest-draw-decoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-draw-decoration.ts -------------------------------------------------------------------------------- /test/webtest-draw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-draw.ts -------------------------------------------------------------------------------- /test/webtest-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-events.ts -------------------------------------------------------------------------------- /test/webtest-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-extension.ts -------------------------------------------------------------------------------- /test/webtest-hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-hover.ts -------------------------------------------------------------------------------- /test/webtest-motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/view/HEAD/test/webtest-motion.ts --------------------------------------------------------------------------------