commandEcho [-filter string[]] [-lineNumbers boolean] [-state boolean]
commandEcho は 「元に戻す」が可能、「照会」が可能、「編集」が不可能 です。
このコマンドは、コマンド ウィンドウに何がエコーされるかを制御します。なし
戻り値の型は照会モードでは照会フラグが基になります。
| ロング ネーム(ショート ネーム) | 引数型 | プロパティ | ||
|---|---|---|---|---|
-state(-st)
|
boolean
|
|
||
|
||||
-filter(-f)
|
string[]
|
|
||
|
||||
-lineNumbers(-ln)
|
boolean
|
|
||
|
||||
// Echo everything
commandEcho -state on;
// Go back to normal
commandEcho -state off;
// Display line number information in messages. This is the default.
commandEcho -lineNumbers on;
// Do not display line number information in messages.
commandEcho -lineNumbers off;
// Do not display changeToolIcon, escapeCurrentTool or autoUpdateAttrEd commands when echoing everything
commandEcho -filter {"changeToolIcon", "escapeCurrentTool", "autoUpdateAttrEd"};
// Do not display setLastFocusedCommandReporter or setLastFocusedCommandExecuter when echoing everything
commandEcho -filter "setLastFocusedCommand";