2013-04-23 36 views

回答

0

議程的顯示將反映Emacs'truncate-lines變量的設置。功能toggle-truncate-lines是以交互方式打開或關閉此功能的最簡單方法。組織模式還提供了org-startup-truncated變量,它執政truncate-lines默認值應該是在整個組織模式是什麼:

Non-nil means entering Org-mode will set `truncate-lines'. 
This is useful since some lines containing links can be very long and 
uninteresting. Also tables look terrible when wrapped. 

如果你真的想截斷關閉全球範圍內(包括組織模式緩衝區),但你想要議程中的線條包裝,然後你可以添加一些東西到org-agenda-mode-hook禁用該選項:

(defun my/org-agenda-mode-hook() 
    (interactive) 
    (setq truncate-lines nil)) 

(add-hook 'org-agenda-mode-hook 
      'my/org-agenda-mode-hook) 
相關問題