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
[foldgutter addon](https://codemirror.net/doc/manual.html#addon_foldgutter): Optimize by reusing DOM when possible.
10
+
11
+
[markdown mode](https://codemirror.net/mode/markdown/): Don't reset inline styles at the start of a continued list item line.
12
+
13
+
[clike mode](https://codemirror.net/mode/clike/): Add a configuration for Objective-C++.
14
+
15
+
## 5.49.0 (2019-09-20)
16
+
17
+
### Bug fixes
18
+
19
+
[octave mode](https://codemirror.net/mode/octave/index.html): Don't mark common punctuation as error.
20
+
21
+
[clike mode](https://codemirror.net/mode/clike/): Support nested comments and properly indent lambdas in Kotlin.
22
+
23
+
[foldgutter](https://codemirror.net/doc/manual.html#addon_foldgutter) and [annotatescrollbar](https://codemirror.net/doc/manual.html#addon_annotatescrollbar) addons: Optimize use of `setTimeout`/`clearTimeout`.
24
+
25
+
### New features
26
+
27
+
New themes: [moxer](https://codemirror.net/demo/theme.html#moxer), [material-darker](https://codemirror.net/demo/theme.html#material-darker), [material-palenight](https://codemirror.net/demo/theme.html#material-palenight), [material-ocean](https://codemirror.net/demo/theme.html#material-ocean).
28
+
29
+
[xml mode](https://codemirror.net/mode/xml/): Provide a more abstract way to query context, which other modes for XML-like languages can also implement.
30
+
31
+
## 5.48.4 (2019-08-20)
32
+
33
+
### Bug fixes
34
+
35
+
Make default styles for line elements more specific so that they don't apply to all `<pre>` elements inside the editor.
36
+
37
+
Improve efficiency of fold gutter when there's big folded chunks of code in view.
38
+
39
+
Fix a bug that would leave the editor uneditable when a content-covering collapsed range was removed by replacing the entire document.
40
+
41
+
[julia mode](https://codemirror.net/mode/julia/): Support number separators.
[handlebars mode](https://codemirror.net/mode/handlebars/): Support triple-brace tags.
46
+
47
+
## 5.48.2 (2019-07-20)
48
+
49
+
### Bug fixes
50
+
51
+
[vim bindings](https://codemirror.net/demo/vim.html): Adjust char escape substitution to match vim, support `&/$0`.
52
+
53
+
[search addon](https://codemirror.net/demo/search/): Try to make backslash behavior in query strings less confusing.
54
+
55
+
[javascript mode](https://codemirror.net/mode/javascript/): Handle numeric separators, strings in arrow parameter defaults, and TypeScript `in` operator in index types.
Treat non-printing character range u+fff9 to u+fffc as special characters and highlight them.
64
+
65
+
[show-hint addon](https://codemirror.net/doc/manual.html#addon_show-hint): Fix positioning when the dialog is placed in a scrollable container.
66
+
67
+
### New features
68
+
69
+
Add [`selectLeft`](https://codemirror.net/doc/manual.html#mark_selectLeft)/[`selectRight`](https://codemirror.net/doc/manual.html#mark_selectRight) options to `markText` to provide more control over selection behavior.
0 commit comments