2017-09-14 86 views
0

如何在標題級別定義模式?我喜歡將數據存儲在我的組織模式文件中,並以標題級別而非文件級別定義模式。所以我喜歡有org-mode中的不同模式

* SQL Query (This should be in SQL-Mode) 
Select * from sometable where some condition 
* A Java Program (This should be in Java-Mode) 
public static void string.. 

回答

4

您可以使用source blocks。喜歡的東西:

* SQL Query (This should be in SQL-Mode) 
#+BEGIN_SRC sql 
Select * from sometable where some condition 
#+END_SRC 

* A Java Program (This should be in Java-Mode) 
#+BEGIN_SRC java 
public static void string.. 
#+END_SRC 

它作爲你問什麼,但你可以C-c '打開源塊和用正確的主要模式的緩衝區編輯代碼不是很無縫。

相關問題