|
h-tom です。
tabgrouptotalですが、タブにファイルが1つしかない状態で、非表示または
最小化すると、タブグループのカウント外になります。
(tabgrouptotalでカウントされない。)
//ここから
if(!tabmode) settabmode;
$out = $out + "現状 :tabgrouptotal=" + str(tabgrouptotal) + "\n";
openfile "/i ";
$out = $out + "新規 通常 :tabgrouptotal=" + str(tabgrouptotal) + "\n";
showwindow 0;
$out = $out + "新規 非表示:tabgrouptotal=" + str(tabgrouptotal) + "\n";
showwindow 1;
$out = $out + "新規 通常 :tabgrouptotal=" + str(tabgrouptotal) + "\n";
iconthistab;
$out = $out + "新規 最小化:tabgrouptotal=" + str(tabgrouptotal) + "\n";
showwindow 1;
message $out;
endmacro;
//ここまで
//出力結果
---------------------------
秀丸エディタ
---------------------------
現状 :tabgrouptotal=1
新規 通常 :tabgrouptotal=2
新規 非表示:tabgrouptotal=1
新規 通常 :tabgrouptotal=2
新規 最小化:tabgrouptotal=1
---------------------------
OK
---------------------------
|
|