Skip to content

Commit d72c4a1

Browse files
author
Oyku Yilmaz
committed
package 09.10.23
1 parent 7872c8a commit d72c4a1

25 files changed

+603
-112
lines changed

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.29.0](https://github.com/ajaxorg/ace/compare/v1.28.0...v1.29.0) (2023-10-09)
6+
7+
8+
### Features
9+
10+
* allow setting completion.ignoreCaption ([5618046](https://github.com/ajaxorg/ace/commit/56180467e12c300850da89cc13c1c8648fb5e342))
11+
512
## [1.28.0](https://github.com/ajaxorg/ace/compare/v1.27.0...v1.28.0) (2023-09-22)
613

714

ace.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1068,6 +1068,7 @@ export namespace Ace {
10681068
parentNode?: HTMLElement;
10691069
setSelectOnHover?: Boolean;
10701070
stickySelectionDelay?: Number;
1071+
ignoreCaption?: Boolean;
10711072
emptyMessage?(prefix: String): String;
10721073
getPopup(): AcePopup;
10731074
showPopup(editor: Editor, options: CompletionOptions): void;

demo/kitchen-sink/demo.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5921,7 +5921,10 @@ var Autocomplete = /** @class */ (function () {
59215921
var prefix = util.getCompletionPrefix(this.editor);
59225922
this.base = session.doc.createAnchor(pos.row, pos.column - prefix.length);
59235923
this.base.$insertRight = true;
5924-
var completionOptions = { exactMatch: this.exactMatch };
5924+
var completionOptions = {
5925+
exactMatch: this.exactMatch,
5926+
ignoreCaption: this.ignoreCaption
5927+
};
59255928
this.getCompletionProvider({
59265929
prefix: prefix,
59275930
pos: pos

demo/kitchen-sink/docs/powershell.ps1

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,45 @@ $an_array = @(1, 2, 3)
2222
$a_hash = @{"something" = "something else"}
2323

2424
& notepad .\readme.md
25+
26+
$h1 = @{ FirstName = "James"; LastName = "Anderson"; IDNum = 123 }
27+
$last = "Anderson"; $IDNum = 120
28+
$h2 = @{ FirstName = "James"; LastName = $last; IDNum = $IDNum + 3 }
29+
$h3 = @{ }
30+
$h4 = @{ 10 = "James"; 20.5 = "Anderson"; $true = 123 }
31+
32+
${Maximum_Count_26}
33+
${Name with`twhite space and `{punctuation`}}
34+
${E:\\File.txt}
35+
36+
"C:\Temp\" {mkdir "C:\Temp\"}
37+
"C:\Temp\"
38+
39+
@"
40+
This is a here string
41+
$h1 = @{ FirstName = "James"; LastName = "Anderson"; IDNum = 123 }
42+
$last = "Anderson"; $IDNum = 120
43+
$h2 = @{ FirstName = "James"; LastName = $last; IDNum = $IDNum + 3 }
44+
$h3 = @{ }
45+
$h4 = @{ 10 = "James"; 20.5 = "Anderson"; $true = 123 }
46+
$j = 20
47+
48+
still string
49+
$($i = 10) # pipeline gets nothing
50+
$(($i = 10)) # pipeline gets int 10
51+
$($i = 10; $j) # pipeline gets int 20
52+
$(($i = 10); $j) # pipeline gets [object[]](10,20)
53+
$(($i = 10); ++$j) # pipeline gets int 10
54+
$(($i = 10); (++$j)) # pipeline gets [object[]](10,22)
55+
$($i = 10; ++$j) # pipeline gets nothing
56+
$(2,4,6) # pipeline gets [object[]](2,4,6)
57+
"@
58+
59+
@'
60+
Expressions inside should be recognised as string
61+
$h1 = @{ FirstName = "James"; LastName = "Anderson"; IDNum = 123 }
62+
$last = "Anderson"; $IDNum = 120
63+
$h2 = @{ FirstName = "James"; LastName = $last; IDNum = $IDNum + 3 }
64+
$h3 = @{ }
65+
$h4 = @{ 10 = "James"; 20.5 = "Anderson"; $true = 123 }
66+
'@

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.28.0",
5+
"version": "1.29.0",
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-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/ext-prompt.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/mode-powershell.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)