Skip to content

Commit 586f6cf

Browse files
committed
package 23.01.26
1 parent a31f6d4 commit 586f6cf

58 files changed

Lines changed: 430 additions & 118 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.43.6](https://github.com/ajaxorg/ace/compare/v1.43.5...v1.43.6) (2026-01-23)
6+
7+
8+
### Bug Fixes
9+
10+
* the text completer didn't export its id ([#5847](https://github.com/ajaxorg/ace/issues/5847)) ([b256c10](https://github.com/ajaxorg/ace/commit/b256c10691e6ba9296d18dcdea15441189971d1e))
11+
512
### [1.43.5](https://github.com/ajaxorg/ace/compare/v1.43.4...v1.43.5) (2025-12-02)
613

714
### [1.43.4](https://github.com/ajaxorg/ace/compare/v1.43.3...v1.43.4) (2025-10-17)

ace.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ declare module "ace-builds" {
10661066
import { Range } from "ace-builds-internal/range";
10671067
import { UndoManager } from "ace-builds-internal/undomanager";
10681068
import { VirtualRenderer as Renderer } from "ace-builds-internal/virtual_renderer";
1069-
export var version: "1.43.5";
1069+
export var version: "1.43.6";
10701070
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
10711071
}
10721072

demo/kitchen-sink/demo.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2318,7 +2318,7 @@ var dummyDiffProvider = {
23182318
return [];
23192319
}
23202320
};
2321-
dom.importCssString(css, "diffview.css");
2321+
dom.importCssString(css, "diffview.css", false);
23222322
var BaseDiffView = /** @class */ (function () {
23232323
function BaseDiffView(inlineDiffEditor, container) {
23242324
this.onChangeTheme = this.onChangeTheme.bind(this);
@@ -11076,6 +11076,7 @@ function wordDistance(doc, pos) {
1107611076
});
1107711077
return wordScores;
1107811078
}
11079+
exports.id = "textCompleter";
1107911080
exports.getCompletions = function (editor, session, pos, prefix, callback) {
1108011081
var wordScore = wordDistance(session, pos);
1108111082
var wordList = Object.keys(wordScore);

demo/kitchen-sink/docs/django.djt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,11 @@
55
{% block content %}
66
<h1>Hello, {{ name|default:"World" }}!</h1>
77
{% endblock %}
8+
9+
<p id="formatted" class="test-class-1 {{ variable_class }} test-class-2" data-attribute="unformatted"></p>
10+
11+
{% comment %}
12+
This content should be green.
13+
{% endcomment %}
14+
15+
<p>{#line comment#}</p>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ace-builds",
33
"main": "./src-noconflict/ace.js",
44
"typings": "ace.d.ts",
5-
"version": "1.43.5",
5+
"version": "1.43.6",
66
"description": "Ace (Ajax.org Cloud9 Editor)",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"

src-min-noconflict/ace.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/ext-diff.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/ext-inline_autocomplete.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/ext-language_tools.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min-noconflict/keybinding-emacs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)