0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【秀丸マクロ】#ifdef等のカラー表示

Posted at

userhilight.mac

call Initialize;
call Main;
endmacro;

Initialize:
	$FILE_NAME = "userhilight";
	$PATH = settingdir + "\\" + $FILE_NAME + ".hilight";
	return;

Main:
	call Hilight;
	return;

Hilight:
	question "はい:LOAD いいえ:OPEN";
    if( result == yes ) {
		loadhilight $PATH, 1, 0x00000010;
    }
    else
    {
        openfile $PATH;
    }
    return;

userhilight.hilight (settingフォルダに入れる)

/<Defines>
/////////////////////////////////////
//---#ifdefで有効にする#define値---//
/////////////////////////////////////

/<DefinesInvalid>
/////////////////////////////////////
//---#ifdefで無効にする#define値---//
/////////////////////////////////////


/<Ifvalue>
/////////////////////////////////////
//---#ifで有効にする式の内容-------//
/////////////////////////////////////


/<IfvalueInvalid>
/////////////////////////////////////
//---#ifで無効にする式の内容-------//
/////////////////////////////////////
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?