Skip to content

Commit 7d0fd99

Browse files
author
Yutaka Emura
committed
LanguageServerProp
1 parent 426e50c commit 7d0fd99

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

en/history/v23_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- Improved invalid character detections while opening **Japanese (JIS)** or **Japanese (EUC)** files. {{profree}}
1111
- Improved the speed of Find with the Count Matches option while opening a very large file in **Japanese (JIS)** or **Japanese (EUC)**. {{profree}}
1212
- Improved the speed of **Delete Columns**, **Insert Column Right/Left**, **Combine COlumns**, **Sort Columns**, **Paste**, and other commands while working on the **CSV** mode. {{pro}}
13-
- By default, improved the speed of **Uppercase**, **Lowercase**, and many other conversion commands when the number of replacements is very large by not using temporary files while enabling the disk-based file operations.
13+
- By default, improved the speed of **Uppercase**, **Lowercase**, and many other conversion commands for very large numbers of replacements by eliminating the use of temporary files and enabling disk-based file operations.
1414

1515
## New Options
1616

en/macro/language_server_prop/enabled.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Enabled Property (LanguageServerProp Object)
22

3-
Corresponds to the **Enable Language Server Protocol** check box in the <br> [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties.
3+
Corresponds to the **Enable Language Server Protocol** check box in the [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties.
44

55
##
66

@@ -20,4 +20,4 @@ object.Enabled = b
2020

2121
## Version
2222

23-
Supported on EmEditor Professional Version 23.00 or later.
23+
Supported on EmEditor Professional Version 23.0 or later.

en/macro/language_server_prop/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| | |
66
| --- | --- |
77
| **[Enabled](enabled)** | Corresponds to the **Enable Language Server Protocol** check box in the [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties. |
8+
| **[ShowTooltip](show_tooltip)** | Corresponds to the **Show hover tooltip** check box in the [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties. |
89
| **[Type](type)** | Corresponds to the **Document Type** drop-down list box in the [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties. |
910

1011
## Version
@@ -16,5 +17,6 @@ Supported on EmEditor Professional Version 23.0 or later.
1617
:hidden:
1718
:maxdepth: 1
1819
enabled
20+
show_tooltip
1921
type
2022
```
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# ShowTooltip Property (LanguageServerProp Object)
2+
3+
Corresponds to the **Show hover tooltip** check box in the [**Language Server** page](../../dlg/properties/language_server/index) of Configuration Properties.
4+
5+
##
6+
7+
### \[JavaScript\]
8+
9+
```
10+
b = object.ShowTooltip;
11+
object.ShowTooltip = b;
12+
```
13+
14+
### \[VBScript\]
15+
16+
```
17+
b = object.ShowTooltip
18+
object.ShowTooltip = b
19+
```
20+
21+
## Version
22+
23+
Supported on EmEditor Professional Version 23.0 or later.

0 commit comments

Comments
 (0)