You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mouse button clicks can now be bound in keymaps by using names like `"LeftClick"` or `"Ctrl-Alt-MiddleTripleClick"`. When bound to a function, that function will be passed the position of the click as second argument.
84
+
85
+
The behavior of mouse selection and dragging can now be customized with the [`configureMouse`](http://codemirror.net/doc/manual.html#option_configureMouse) option.
86
+
87
+
Modes can now look ahead across line boundaries with the [`StringStream`](http://codemirror.net/doc/manual.html#StringStream)`.lookahead` method.
88
+
89
+
Introduces a `"type"` token type, makes modes that recognize types output it, and add styling for it to the themes.
90
+
91
+
New [`pasteLinesPerSelection`](http://codemirror.net/doc/manual.html#option_pasteLinesPerSelection) option to control the behavior of pasting multiple lines into multiple selections.
92
+
93
+
[searchcursor addon](http://codemirror.net/doc/manual.html#addon_searchcursor): Support multi-line regular expression matches, and normalize strings when matching.
94
+
1
95
## 5.26.0 (2017-05-22)
2
96
3
97
### Bug fixes
@@ -18,7 +112,7 @@ More careful restoration of selections in widgets, during editor redraw.
18
112
19
113
### New features
20
114
21
-
[vim bindings](http://codemirror.net/mode/demo/vim.html): Parse line offsets in line or range specs.
115
+
[vim bindings](http://codemirror.net/demo/vim.html): Parse line offsets in line or range specs.
22
116
23
117
## 5.25.2 (2017-04-20)
24
118
@@ -76,7 +170,7 @@ Add `role=presentation` to more DOM elements to improve screen reader support.
76
170
77
171
[continuelist addon](http://codemirror.net/doc/manual.html#addon_continuelist): Support continuing task lists.
78
172
79
-
[vim bindings](http://codemirror.net/mode/demo/vim.html): Make Y behave like yy.
173
+
[vim bindings](http://codemirror.net/demo/vim.html): Make Y behave like yy.
80
174
81
175
[sql mode](http://codemirror.net/mode/sql/): Support sqlite dialect.
82
176
@@ -122,7 +216,7 @@ Fix bug in handling of read-only marked text.
122
216
123
217
Positions now support a `sticky` property which determines whether they should be associated with the character before (value `"before"`) or after (value `"after"`) them.
124
218
125
-
[vim bindings](http://codemirror.net/mode/demo/vim.html): Make it possible to remove built-in bindings through the API.
219
+
[vim bindings](http://codemirror.net/demo/vim.html): Make it possible to remove built-in bindings through the API.
126
220
127
221
[comment addon](http://codemirror.net/doc/manual.html#addon_comment): Support a per-mode <code>useInnerComments</code> option to optionally suppress descending to the inner modes to get comment strings.
0 commit comments