*출처(원문): http://www.ericstory.com/tag/Source%20Insight
Source Insight로 디버깅을 하다보면, 떠있는 창이 50-60개에 육박하는 경우가 많은데,
이런 경우, Source Insight가 잡아먹는 리소스가 장난 아니다.
컴퓨터가 버벅거리기 일쑤~!
이 Tip을 적용하면, Source Insight에서 창이 10개이상이 뜨면, 오래된 창부터 자동으로 닫아준다.
이 매크로를 사용하려면,
Options > Preference > General > Enable event handler 에 체크가 되있어야 한다.
그 후, Base Project의 Utils.em파일을 열어 다음과 같은 function을 추가한다.
event DocumentOpen(sFile)
{
nHoldWnd = 10
winCnt = WndListCount()
if(winCnt > nHoldWnd) {
hWnd = GetCurrentWnd()
while(nHoldWnd-- != 0) {
hWnd = GetNextWnd(hWnd)
}
while(hWnd != 0) {
hTmpWnd = GetNextWnd(hWnd)
CloseWnd(hWnd)
hWnd = hTmpWnd
}
}
}
event 로 시작하는 함수는 source Insight 에서 정의하는 event handler인데, DocumentOpen()이라는 함수는 새로운 파일을 open할때 불려지는 이벤트 핸들러이다.
'【🧰 SW Info & Tips】 > Source Insight' 카테고리의 다른 글
[Source Insight 3] File Switch Tabbar (0) | 2013.04.27 |
---|---|
[Source Insight 3] 주석추가 매크로 (0) | 2012.08.16 |
[Source Insight 3] 나눔고딕코딩 한글 글꼴 수정 (0) | 2012.08.15 |
[Source Insight 3] 한글 주석 깨지지 않게 하기 (0) | 2012.08.15 |