mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
212 lines
6.9 KiB
EmacsLisp
212 lines
6.9 KiB
EmacsLisp
;;; ein-mumamo.el --- MuMaMo for notebook
|
||
|
||
;; Copyright (C) 2012- Takafumi Arakaki
|
||
|
||
;; Author: Takafumi Arakaki <aka.tkf at gmail.com>
|
||
|
||
;; This file is NOT part of GNU Emacs.
|
||
|
||
;; ein-mumamo.el is free software: you can redistribute it and/or modify
|
||
;; it under the terms of the GNU General Public License as published by
|
||
;; the Free Software Foundation, either version 3 of the License, or
|
||
;; (at your option) any later version.
|
||
|
||
;; ein-mumamo.el is distributed in the hope that it will be useful,
|
||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
;; GNU General Public License for more details.
|
||
|
||
;; You should have received a copy of the GNU General Public License
|
||
;; along with ein-mumamo.el. If not, see <http://www.gnu.org/licenses/>.
|
||
|
||
;;; Commentary:
|
||
|
||
;;
|
||
|
||
;;; Code:
|
||
|
||
(require 'mumamo)
|
||
(require 'mumamo-cmirr)
|
||
|
||
(require 'ein-notebook)
|
||
|
||
|
||
|
||
;;; Customization
|
||
|
||
(defcustom ein:mumamo-codecell-mode 'python-mode
|
||
"Major Mode for Code Cell."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:mumamo-textcell-mode 'text-mode
|
||
"Major Mode for Text Cell."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:mumamo-htmlcell-mode 'html-mode
|
||
"Major Mode for HTML Cell."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:mumamo-markdowncell-mode 'markdown-mode
|
||
"Major Mode for Markdown Cell."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:mumamo-rawcell-mode 'rst-mode
|
||
"Major Mode for Raw Cell."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:mumamo-headingcell-mode 'text-mode
|
||
"Major Mode for Heading Cell."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:mumamo-fallback-mode 'text-mode
|
||
"Fallback Major Mode."
|
||
:type '(symbol :tag "Major Mode")
|
||
:group 'ein)
|
||
|
||
(defcustom ein:use-mumamo-indent-line-function-workaround t
|
||
"Turn on workaround for `mumamo-indent-line-function'.
|
||
|
||
In code cell, hitting TAB or C-j at the end of input area causes
|
||
error from MuMaMo. When this variable is non-`nil', EIN patches
|
||
`mumamo-indent-line-function' to workaround this problem. This
|
||
workaround is on by default.
|
||
|
||
Note that python-mode's indentation function has other problems
|
||
with MuMaMo. For example, hitting TAB twice, which decreases the
|
||
indentation level by one in normal Python buffer, causes similar
|
||
error in code cell. The current workaround does not fix this
|
||
problem."
|
||
:type 'boolean
|
||
:group 'ein)
|
||
|
||
|
||
|
||
;;; Workaround
|
||
|
||
(defadvice mumamo-indent-line-function
|
||
(around ein:mumamo-indent-line-function-workaround)
|
||
"Workaround the indentation problem when the cursor is at the
|
||
end of input area."
|
||
(if (and (looking-at-p "\n")
|
||
(get-char-property (point) 'read-only))
|
||
(let (m)
|
||
;; The cursor is at the end of input area
|
||
;; Indentation does not work as-is. Here is the workaround:
|
||
(unwind-protect
|
||
(progn
|
||
(insert "\n")
|
||
(setq m (point-marker))
|
||
(backward-char)
|
||
ad-do-it)
|
||
(save-excursion
|
||
(goto-char m)
|
||
(backward-char)
|
||
(delete-char 1))))
|
||
ad-do-it))
|
||
|
||
(defun ein:mumamo-indent-line-function-workaround-turn-on ()
|
||
"Activate advice for `mumamo-indent-line-function'.
|
||
Called via `ein:notebook-mumamo-mode-hook'."
|
||
(when ein:use-mumamo-indent-line-function-workaround
|
||
(ad-enable-advice 'mumamo-indent-line-function 'around
|
||
'ein:mumamo-indent-line-function-workaround)
|
||
(ad-activate 'mumamo-indent-line-function)))
|
||
|
||
|
||
|
||
;;; `ein:notebook-mumamo-mode'
|
||
|
||
(define-derived-mode ein:notebook-bg-mode fundamental-mode "ein:bg"
|
||
"Background mode for `ein:notebook-mumamo-mode'."
|
||
(setq font-lock-defaults '(nil t))
|
||
(font-lock-mode))
|
||
|
||
(define-mumamo-multi-major-mode ein:notebook-mumamo-mode
|
||
"IPython notebook mode."
|
||
("IPython notebook familiy" ein:notebook-bg-mode
|
||
(ein:mumamo-chunk-codecell
|
||
ein:mumamo-chunk-textcell
|
||
ein:mumamo-chunk-htmlcell
|
||
ein:mumamo-chunk-markdowncell
|
||
ein:mumamo-chunk-rawcell
|
||
ein:mumamo-chunk-headingcell
|
||
)))
|
||
|
||
;; "Sync" `ein:notebook-mumamo-mode-map' with `ein:notebook-mode-map'.
|
||
(setcdr ein:notebook-mumamo-mode-map (cdr ein:notebook-mode-map))
|
||
|
||
(add-hook 'ein:notebook-mumamo-mode-hook 'ein:notebook-setup-kill-buffer-hook)
|
||
(add-hook 'ein:notebook-mumamo-mode-hook
|
||
'ein:mumamo-indent-line-function-workaround-turn-on)
|
||
|
||
|
||
|
||
;;; Chunk functions
|
||
|
||
(defmacro ein:mumamo-define-chunk (name)
|
||
(let ((funcname (intern (format "ein:mumamo-chunk-%s" name)))
|
||
(mode (intern (format "ein:mumamo-%s-mode" name)))
|
||
(cell-p (intern (format "ein:%s-p" name))))
|
||
`(defun ,funcname (pos max)
|
||
(mumamo-possible-chunk-forward
|
||
pos max
|
||
(lambda (pos max) "CHUNK-START-FUN"
|
||
(ein:log 'debug "CHUNK-START-FUN(pos=%s max=%s)" pos max)
|
||
(ein:aif (ein:mumamo-find-edge pos max nil #',cell-p)
|
||
(list it (if (functionp ,mode)
|
||
,mode
|
||
ein:mumamo-fallback-mode)
|
||
nil)))
|
||
(lambda (pos max) "CHUNK-END-FUN"
|
||
(ein:log 'debug "CHUNK-END-FUN(pos=%s max=%s)" pos max)
|
||
(ein:mumamo-find-edge pos max t #',cell-p))))))
|
||
|
||
(ein:mumamo-define-chunk codecell)
|
||
(ein:mumamo-define-chunk textcell)
|
||
(ein:mumamo-define-chunk htmlcell)
|
||
(ein:mumamo-define-chunk markdowncell)
|
||
(ein:mumamo-define-chunk rawcell)
|
||
(ein:mumamo-define-chunk headingcell)
|
||
|
||
(defun ein:mumamo-find-edge (pos max end cell-p)
|
||
"Helper function for `ein:mumamo-chunk-codecell'.
|
||
|
||
Return the point of beginning of the input element of cell after
|
||
the point POS. Return `nil' if it cannot be found before the point
|
||
MAX. If END is non-`nil', end of the input element is returned."
|
||
(ein:log 'debug "EIN:MUMAMO-FIND-EDGE(pos=%s max=%s end=%s cell-p=%s)"
|
||
pos max end cell-p)
|
||
(let* ((ewoc-node
|
||
(ein:notebook-get-nearest-cell-ewoc-node pos max cell-p))
|
||
(_ (ein:log 'debug "(null ewoc-node) = %s" (null ewoc-node)))
|
||
(cell (ein:aand ewoc-node
|
||
(ein:$node-data (ewoc-data it))))
|
||
(_ (ein:log 'debug "(null cell) = %s" (null cell)))
|
||
(find
|
||
(lambda (c)
|
||
(ein:aand c
|
||
(ein:cell-element-get it (if end :after-input :input))
|
||
(progn
|
||
(ein:log 'debug "(null it) = %s" (null it))
|
||
(ewoc-location it))
|
||
(if end it (1+ it)))))
|
||
(input-pos (funcall find cell)))
|
||
(ein:log 'debug "input-pos (1) = %s" input-pos)
|
||
(when (and input-pos (< input-pos pos))
|
||
(setq input-pos (ein:aand (ein:cell-next cell)
|
||
(when (funcall cell-p it) (funcall find it)))))
|
||
(ein:log 'debug "input-pos (2) = %s" input-pos)
|
||
(when (and input-pos (> input-pos max))
|
||
(setq input-pos nil))
|
||
(ein:log 'debug "input-pos (3) = %s" input-pos)
|
||
input-pos))
|
||
|
||
(provide 'ein-mumamo)
|
||
|
||
;;; ein-mumamo.el ends here
|