Skip to content

Commit be93643

Browse files
author
Yutaka Emura
committed
Version 23.0 page
1 parent ba09e54 commit be93643

File tree

4 files changed

+86
-4
lines changed

4 files changed

+86
-4
lines changed

en/cmd/convert/format_document.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Format Document command
2+
3+
## Summary
4+
5+
Formats the entire document using the Language Server Protocol.
6+
7+
## Description
8+
9+
Formats the entire document using the Language Server Protocol.
10+
11+
## How to Run
12+
13+
- Default Menu: None
14+
- [All Commands](../tools/all_commands): **Convert** \> **Format Document**
15+
- Toolbar: None
16+
- Status Bar: None
17+
- Default Keyboard Shortcut: Ctrl+K, D
18+
19+
## Plug-in Command ID
20+
21+
```
22+
EEID_FORMAT_DOCUMENT (23244)```
23+
24+
## Macros
25+
26+
### \[JavaScript\]
27+
28+
```
29+
editor.ExecuteCommandByID(23244);
30+
```
31+
32+
### \[VBScript\]
33+
34+
```
35+
editor.ExecuteCommandByID 23244
36+
```

en/cmd/convert/format_selection.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Format Selection command
2+
3+
## Summary
4+
5+
Formats the selection using the Language Server Protocol.
6+
7+
## Description
8+
9+
Formats the selection using the Language Server Protocol.
10+
11+
## How to Run
12+
13+
- Default Menu: **Convert** \> **Format**
14+
- [All Commands](../tools/all_commands): **Convert** \> **Format Selection**
15+
- Toolbar: None
16+
- Status Bar: None
17+
- Default Keyboard Shortcut: Ctrl+K, F
18+
19+
## Plug-in Command ID
20+
21+
```
22+
EEID_FORMAT_SELECTION (23245)```
23+
24+
## Macros
25+
26+
### \[JavaScript\]
27+
28+
```
29+
editor.ExecuteCommandByID(23245);
30+
```
31+
32+
### \[VBScript\]
33+
34+
```
35+
editor.ExecuteCommandByID 23245
36+
```

en/cmd/convert/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
| **[Remove Empty Lines](../edit/remove_empty_lines)** | Removes empty lines in the selection or the whole document. |
2323
| **[Remove Empty Columns](../edit/remove_empty_columns)** | Removes empty columns in the CSV document. |
2424
| **[Reconvert](../edit/reconvert)** | Reconverts the selection using an IME capable of re-conversion. |
25+
| **[Format Document](format_document.md)** | Formats the entire document using the Language Server Protocol. |
26+
| **[Format Selection](format_selection.md)** | Formats the selection using the Language Server Protocol. |
2527
| **[HTML/XML Character Reference to Unicode](../edit/decode_html_char_ref)** | Decodes the selected text from HTML/XML Character Reference. |
2628
| **[Unicode to HTML/XML Numeric Character Reference](../edit/encode_html_char_ref)** | Encodes the selected text to HTML/XML Numeric Character Reference. |
2729
| **[Unicode to HTML Character Entity Reference](../edit/encode_html_char_entity_ref)** | Encodes the selected text to HTML Character Entity Reference. |

en/history/v23_0.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,22 @@
44

55
## New General Features
66

7-
- Redesign help pages
8-
- Add **Format Document** and **Format Selection** features
7+
- Redesigned help pages. {{profree}}
8+
- Added the ability to show the embedded **Web Browser** within EmEditor using the **WebView2** control. The **Web Browser** is designed to be used in conjunction with macros. Writing a macro enables you to send specific text to a website. The new **onLoad** event in JavaScript (V8) enables you to retrieve specific text from the web page when it is loaded. The initial home URL can be customized in the new **Web Browser** page of the **Customize** dialog box. {{pro}}
9+
- Added the ability to format the selection or enditre document using the **Language Server Protocol** (**Format Document** and **Format Selection** commands). {{pro}}
10+
- Improved the speed of opening a very large file when using Japanese (Shift-JIS, ISO-2022-JP, and EUC), Korean (ks_c_5601-1987 and EUC), Simplified Chinese (GB2312), or Traditional Chinese (Big5). {{profree}}
11+
- Improved the speed of **Delete Columns** command while in the CSV mode. {{pro}}
912

1013
## New Options
1114

12-
- Add **Format Document** and **Format Selection** to **Convert** menu
15+
- Added the **Web Browser** page to the **Customize** dialog box. {{pro}}
1316

1417
## New Commands
1518

16-
- Add **Format Document** and **Format Selection** commands
19+
- Web Browser
20+
- 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}}
1723

1824
## Plug-in New Features {{pro}}
1925

@@ -22,6 +28,8 @@
2228

2329
## Macro New Features {{pro}}
2430

31+
- onLoad event
32+
2533
### Notes
2634

2735
- \[P\] EmEditor Professional only

0 commit comments

Comments
 (0)