基本的に別のマクロを使用するマクロを Notepad++ で作成したいのですが、これを行う方法はありますか?
基本的に、キーストロークは次のようになります。
CTRL
+ SHIFT
+ Home
- カーソルからファイルの先頭までをすべて選択
ALT
+ H
- 選択した行を非表示にします
次に、別のマクロが逆を行います。問題は、ALT
+H
が [メイン メニュー] タブ (行 117 "Hide Lines") の下で既にマクロになっていることです。マクロを記録しようとすると、テキストだけが強調表示されます。
これにより、作業するコードの特定の領域が効果的にブロックされます。最終的な結果は、うまくいけばKEDIT の選択的編集に似たものになるでしょう。
Selective Line Editing
This is one of KEDIT's most popular features. The selective editing facility
lets you focus on a subset of the lines in a file, such as all lines containing
a particular string. You can have KEDIT display only this subset of your file,
and you can perform editing operations that affect only this subset. You can
then return to viewing and working with the entire file, with the lines in the
selected subset (as modified by your editing) remaining in their original
position in the file.
行が非表示になったら、非表示の行のみを選択するカスタム検索および置換マクロを作成できます ( CTRL
+ Home
-> Down
-> Down
-> CTRL
+ SHIFT
+ End
-> SHIFT
+ Up
-> SHIFT
+ Up
)
注:検索と置換を制限して、表示されている行のみを実行できる方法があれば、それも役立ちます。