2011-09-05 3 views
1

org-mode의 내 일정보기에있는 태그는 (:symposium::) 뒤에 두 개의 콜론 (이중 콜론)으로 나타납니다. 다른 모든 태그는 콜론 뒤에 단 하나만 표시됩니다 (:admin:). 이것의 원인/이유는 무엇입니까?Agena의 조직 모드 태그의 이중 콜론

답변

7

태그가 부모로부터 상속 된 것처럼 표시됩니다. 나는 이것이 표제와 직접 연관되어있는 태그와 그것의 부모로부터 상속받은 태그를 구별하는 것으로 의심된다. 모든 할 일 항목의 목록을 만들 때

# -*- mode: org -*- 

* TODO This is a test of inherited         :test: 
** TODO This gets a double colon 
*** TODO This also gets the double colon 
** TODO This gets a double colon and an extra tag     :test2: 
*** TODO This gets a double colon after the extra tag 

내가이 얻을이 예와

Global list of TODO items of type: ALL 
Available with `N r': (0)ALL (1)TODO (2)DONE 
    test:  TODO This is a test of inherited       :test: 
    test:  TODO This gets a double colon        :test:: 
    test:  TODO This also gets the double colon      :test:: 
    test:  TODO This gets a double colon and an extra tag  :test::test2: 
    test:  TODO This gets a double colon after the extra tag :test:test2::