Skip to content

Commit d014ab2

Browse files
author
Yutaka Emura
committed
v25.4
1 parent 46161ee commit d014ab2

File tree

6 files changed

+16
-0
lines changed

6 files changed

+16
-0
lines changed

en/history/v25_4.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,19 @@ November 5th, 2025
4040

4141
## Plug-in New Features {{pro}}
4242

43+
- Added the **FLAG_FIND_TRUNCATE** flag to the [**GREP_INFO_EX** structure](../plugin/structure/grep_info_ex).
44+
4345
### Chat with AI
4446

4547
- Changed the chat message storage backend for better organization and performance optimization.
4648
- Added the **Use ... environment variable** option to **Settings** > **AI Connection** to allow Chat with AI to use the environment variable as the API key.
4749
- Added the **Web search** option to **Settings** > **AI Parameters** which enables certain OpenAI models like GPT-5 to search the internet for up to date information.
4850
- Added the **Text verbosity** option to **Settings** > **AI Parameters** to control the verbosity of the text output.
4951

52+
## Macro New Features {{pro}}
53+
54+
- Added the **eeFindFileLineTruncated** flag to the [**FindInFiles** method](../macro/editor/editor_findinfiles) of the **Editor** object.
55+
5056
### Notes
5157

5258
- \[P\] EmEditor Professional only

en/macro/editor/editor_findinfiles.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Additionally, you may specify one of the following values.
5454
| --- | --- |
5555
| eeFindFileAndMatched | File names and matched strings will be displayed. |
5656
| eeFindFileLineAndMatched | File names, line numbers and matched strings will be displayed. |
57+
| eeFindFileLineTruncated | File names, line numbers and matched lines will be displayed. Long lines will be truncated. |
5758
| eeFindFileNamesOnly | Only file names will be displayed and the whole lines containing the searched string will not be displayed as results. |
5859
| eeFindLineOnly | Only the whole lines containing the searched string will be displayed as results. |
5960
| eeFindMatchedOnly | Only the matched strings will be displayed as results. |

en/plugin/structure/grep_info_ex.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ Additionally, you may specify one of the following values.
7878
| --- | --- |
7979
| FLAG\_FIND\_FILE\_AND\_MATCHED | File names and matched strings will be displayed. |
8080
| FLAG\_FIND\_FILE\_LINE\_AND\_MATCHED | File names, line numbers and matched strings will be displayed. |
81+
| FLAG\_FIND\_FILE\_LINE\_TRUNCATED | File names, line numbers and matched lines will be displayed. Long lines will be truncated. |
8182
| FLAG\_FIND\_FILENAMES\_ONLY | Only file names will be displayed and the whole lines containing the searched string will not be displayed as results. |
8283
| FLAG\_FIND\_LINE\_ONLY | Only the whole lines containing the searched string will be displayed as results. |
8384
| FLAG\_FIND\_MATCHED\_ONLY | Only the matched strings will be displayed as results. |

ja/history/v25_4.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,19 @@
4040

4141
## プラグインの新機能 {{pro}}
4242

43+
- [GREP_INFO_EX 構造体](../plugin/structure/grep_info_ex)に、FLAG_FIND_TRUNCATE フラグを追加しました。
44+
4345
### AIとチャット
4446

4547
- チャット メッセージの保存バックエンドを変更し、整理性の向上とパフォーマンス最適化を図りました。
4648
- [設定] - [AI接続][...環境変数を使用する] オプションを追加し、AIとチャットが環境変数を API キーとして使用できるようにしました。
4749
- [設定] - [AIパラメータ][Web検索] オプションを追加し、GPT-5 など一部の OpenAI モデルが最新情報を取得するためにインターネット検索を行えるようにしました。
4850
- [設定] - [AIパラメータ][テキスト冗長] オプションを追加し、テキスト出力の詳細度を制御できるようにしました。
4951

52+
## マクロの新機能 {{pro}}
53+
54+
- Editor オブジェクトの [FindInFiles メソッド](../macro/editor/editor_findinfiles)に、eeFindFileLineTruncated フラグを追加しました。
55+
5056
###
5157

5258
- \[P\] EmEditor Professional のみ

ja/macro/editor/editor_findinfiles.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ _nFlags_
5353
| --- | --- |
5454
| eeFindFileAndMatched | ファイル名と一致した文字列が結果として表示されます。 |
5555
| eeFindFileLineAndMatched | ファイル名、行番号、一致した文字列が結果として表示されます。 |
56+
| eeFindFileLineTruncated | ファイル名、行番号、一致した行が結果として表示されます。長い行は切り詰められます。 |
5657
| eeFindFileNamesOnly | 見つかったファイルのファイル名だけを結果として表示し、検索した文字列を含む行の内容は表示しません。 |
5758
| eeFindLineOnly | 検索した文字列を含む行の内容だけが結果として表示されます。 |
5859
| eeFindMatchedOnly | 一致した文字列のみが結果として表示されます。 |

ja/plugin/structure/grep_info_ex.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ _nFlags_
7777
| --- | --- |
7878
| FLAG\_FIND\_FILE\_AND\_MATCHED | ファイル名と一致した文字列が結果として表示されます。 |
7979
| FLAG\_FIND\_FILE\_LINE\_AND\_MATCHED | ファイル名、行番号、一致した文字列が結果として表示されます。 |
80+
| FLAG\_FIND\_FILE\_LINE\_TRUNCATED | ファイル名、行番号、一致した行が結果として表示されます。長い行は切り詰められます。 |
8081
| FLAG\_FIND\_FILENAMES\_ONLY | 見つかったファイルのファイル名だけを結果として表示し、検索した文字列を含む行の内容は表示しません。 |
8182
| FLAG\_FIND\_LINE\_ONLY | 検索した文字列を含む行の内容だけが結果として表示されます。 |
8283
| FLAG\_FIND\_MATCHED\_ONLY | 一致した文字列のみが結果として表示されます。 |

0 commit comments

Comments
 (0)