토큰 이름 입력 후 추가를 하고, 확인을 눌렀음에도 Visual studio를 껐다 켰을 때 적용이 안된다면
( VS 2005 기준 )
내문서 - Visual Studio 2005 - Settings 에서 현재 적용중인 셋팅 파일을 열어서
<PropertyValue name="CommentTokens" ArrayType="VT_VARIANT" ArrayElementCount="4">
<PropertyValue name="0">TODO:2</PropertyValue>
<PropertyValue name="1">HACK:2</PropertyValue>
<PropertyValue name="2">UNDONE:2</PropertyValue>
<PropertyValue name="3">UnresolvedMergeConflict:3</PropertyValue>
</PropertyValue>
CommentToken 항목을 찾아서
원하는 내용을 추가하면 된다.
※ 토큰의 총 갯수는 ArrayElementCount의 값과 동일해야한다.
ex)
<PropertyValue name="CommentTokens" ArrayType="VT_VARIANT" ArrayElementCount="7">
<PropertyValue name="0">TODO:2</PropertyValue>
<PropertyValue name="1">HACK:2</PropertyValue>
<PropertyValue name="2">UNDONE:2</PropertyValue>
<PropertyValue name="3">UnresolvedMergeConflict:3</PropertyValue>
<PropertyValue name="4">WTF:3</PropertyValue>
<PropertyValue name="5">TEST:3</PropertyValue>
<PropertyValue name="6">TEMP:3</PropertyValue>
</PropertyValue>
<PropertyValue name= "넘버링" > 토큰 이름 : 우선순위 </PropertyValue>
우선순위는 3(! 높음), 2(보통), 1(↓ 낮음) 순이다.
'Programming > C & C++' 카테고리의 다른 글
Visual Studio 버전 가져오기 (0) | 2020.02.11 |
---|---|
Visual Studio 2017 - E1696 cannot open source file "###" (0) | 2020.02.06 |
텍스트에서 입력 받은 단어의 개수 찾기 (0) | 2019.07.31 |
Visual Studio - An exception has been encountered this may be caused by an extension. (0) | 2019.04.21 |
operator overloading (0) | 2019.03.29 |