8

Emacs でorg-modec-modeを混在させたいです。コメント内はすべて org-modeにする必要があり、残りはデフォルトの major-mode c-modeにする必要があります。

/*
Org-mode here
** Section 1
  text
** Section 2
  text
Org-mode should end here
*/

func1()
{
}

nXhtml multi-major-mode を使ってみましたが、マルチモードをサポートするモードは他にもあると思います。私の問題は、「セクション2」でTABを入力すると、「セクション2」の下のすべてが折りたたまれて見えなくなることです。しかし、org-mode がコメント セクションに折りたたむ/展開する領域を含めたいと思います。TAB は、「*/」までのみ折りたたむ/展開する必要があります。

どうすればこれを達成できるのだろうか?

4

2 に答える 2

3

私は解決策を見つけました:http: //lists.gnu.org/archive/html/emacs-orgmode/2011-01/msg00036.html はorg-modeのパッチをリストしています:

--- emacs-23.2/lisp/org/org.el  2010-04-04 00:26:08.000000000 +0200
+++ src/c51/mk/org.el   2011-01-02 20:26:10.266860827 +0100
@@ -5245,6 +5245,8 @@
 (defun org-cycle-internal-local ()
   "Do the local cycling action."
   (org-back-to-heading)
+  (cond 
+   ((not (looking-at (concat outline-regexp "\s*#" )))
   (let ((goal-column 0) eoh eol eos level has-children children-skipped)
     ;; First, some boundaries
     (save-excursion
@@ -5318,7 +5320,7 @@
       (hide-subtree)
       (message "FOLDED")
       (setq org-cycle-subtree-status 'folded)
-      (run-hook-with-args 'org-cycle-hook 'folded)))))
+      (run-hook-with-args 'org-cycle-hook 'folded)))))))

 ;;;###autoload
 (defun org-global-cycle (&optional arg)
--- emacs-23.2/lisp/outline.el  2010-04-04 00:26:04.000000000 +0200
+++ src/c51/mk/outline.el   2011-01-02 20:35:17.303609833 +0100
@@ -913,8 +913,15 @@
       ;; Then unhide the top level headers.
       (outline-map-region
        (lambda ()
-    (if (<= (funcall outline-level) levels)
-        (outline-show-heading)))
+    (if (<= (funcall outline-level) level)
+          (if (looking-at (concat outline-regexp "\s*#" ))
+          (progn
+            (outline-show-heading )
+            (show-entry ))
+        (outline-show-heading))))
+;;       (lambda ()
+;;  (if (<= (funcall outline-level) levels)
+;;      (outline-show-heading)))
        beg end)))
   (run-hooks 'outline-view-change-hook))

@@ -994,7 +1001,11 @@
       (outline-map-region
        (lambda ()
     (if (<= (funcall outline-level) level)
-        (outline-show-heading)))
+          (if (looking-at (concat outline-regexp "\s*#" ))
+          (progn
+            (outline-show-heading )
+            (show-entry ))
+          (outline-show-heading))))
        (point)
        (progn (outline-end-of-subtree)
          (if (eobp) (point-max) (1+ (point)))))))

このパッチは手作業で適用する必要がありますが、それほど難しくはありません。*#インデントを解除するマーカーを追加します。@bzgはモードを指摘し、M-x orgstruct-mode RET彼の功績を認めました。これで、バックグラウンドでorgstruct-modeを使用してc.modeで書き込むことができます(multi-major-modeはもう必要ありません):

/*
Org-mode here
** Section 1
  text
** Section 2
  text
*#
Org-mode should end here
*/

そして、コメントにorg-modeがあります。セクション1とセクション2は、*#マーカーまで折りたたまれます。

于 2012-05-30T21:21:59.663 に答える
3

試すことができM-x orgstruct-mode RETます。

于 2012-05-30T13:43:50.197 に答える