Skip to content

Commit 5d5a4df

Browse files
author
Yutaka Emura
committed
History v23.0
1 parent be93643 commit 5d5a4df

File tree

4 files changed

+54
-3
lines changed

4 files changed

+54
-3
lines changed

en/history/v23_0.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
## New Options
1414

1515
- Added the **Web Browser** page to the **Customize** dialog box. {{pro}}
16+
- Added the **Click the left edge of a line number to toggle the bookmark** check box to the **Mouse** page of the **Customize** dialog box. {{pro}}
1617

1718
## New Commands
1819

1920
- Web Browser
2021
- Customize Web Browser
21-
- [Format Document](../cmd/convert/format_document.md) (Ctrl+F, D) {{pro}}
22-
- [Format Selection](../cmd/convert/format_selection.md) (Ctrl+F, F) {{pro}}
22+
- [Format Document](../cmd/convert/format_document) (Ctrl+F, D) {{pro}}
23+
- [Format Selection](../cmd/convert/format_selection) (Ctrl+F, F) {{pro}}
2324

2425
## Plug-in New Features {{pro}}
2526

@@ -28,7 +29,10 @@
2829

2930
## Macro New Features {{pro}}
3031

31-
- onLoad event
32+
- Added the **WebBar** object.
33+
- Added the [**LanguageServerProp**](../macro/language_server_prop/index) object.
34+
- Added the **LanguageServer** and **WebBar** properties to the **Config** object.
35+
- Added the **onLoad** event.
3236

3337
### Notes
3438

en/macro/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ interface/index
5656
keyboard_item/index
5757
keyboard_list/index
5858
keyboard_prop/index
59+
language_server_prop/index
5960
link_prop/index
6061
mark_prop/index
6162
match/index
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Enabled Property (LanguageServerProp Object)
2+
3+
Corresponds to the **Enable Language Server Protocol** check box in the <br> [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties.
4+
5+
##
6+
7+
### \[JavaScript\]
8+
9+
```
10+
b = object.Enabled;
11+
object.Enabled = b;
12+
```
13+
14+
### \[VBScript\]
15+
16+
```
17+
b = object.Enabled
18+
object.Enabled = b
19+
```
20+
21+
## Version
22+
23+
Supported on EmEditor Professional Version 23.00 or later.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Type Property (LanguageServerProp Object)
2+
3+
Corresponds to the **Document Type** drop-down list box in the [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties.
4+
5+
##
6+
7+
### \[JavaScript\]
8+
9+
```
10+
b = object.Type;
11+
object.Type = b;
12+
```
13+
14+
### \[VBScript\]
15+
16+
```
17+
b = object.Type
18+
object.Type = b
19+
```
20+
21+
## Version
22+
23+
Supported on EmEditor Professional Version 23.00 or later.

0 commit comments

Comments
 (0)