summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2014-04-27 04:40:34 (GMT)
committerRavikiran Rajagopal <aine.marina@gmail.com>2014-04-27 04:40:34 (GMT)
commitebd6ae21f40ec7b3d9d8e8227241e7da625eba1c (patch)
tree102c9aaa67142ed39382cea1ce38c0bab927563d
parente4015c843bf6fee274e079cd4907debc56d8cc68 (diff)
downloaddotemacs-ebd6ae21f40ec7b3d9d8e8227241e7da625eba1c.zip
dotemacs-ebd6ae21f40ec7b3d9d8e8227241e7da625eba1c.tar.gz
dotemacs-ebd6ae21f40ec7b3d9d8e8227241e7da625eba1c.tar.bz2
Mode for handling switching to REPLs
ESS and Julia next
-rw-r--r--init.el1
-rw-r--r--ravi-init-python.el1
-rw-r--r--ravi-init-repl.el57
3 files changed, 59 insertions, 0 deletions
diff --git a/init.el b/init.el
index 4cd3d1d..e205b60 100644
--- a/init.el
+++ b/init.el
@@ -122,3 +122,4 @@
(require 'ravi-init-layouts)
(require 'ravi-init-org)
(require 'ravi-init-tex)
+(require 'ravi-init-repl)
diff --git a/ravi-init-python.el b/ravi-init-python.el
index 34d488d..29aae57 100644
--- a/ravi-init-python.el
+++ b/ravi-init-python.el
@@ -26,6 +26,7 @@
(use-package python
:mode ("\\.py\\'" . python-mode)
+ :commands python-shell-switch-to-shell
:config
(progn
diff --git a/ravi-init-repl.el b/ravi-init-repl.el
new file mode 100644
index 0000000..2b32681
--- /dev/null
+++ b/ravi-init-repl.el
@@ -0,0 +1,57 @@
+;;; ravi-init-repl.el --- REPL utilities
+
+;; Copyright (C) 2014
+
+;; Author: <ravi@nero.lan>
+;; Keywords:
+
+;; This program 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.
+
+;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Read-eval-print-loop support
+
+;;; Code:
+
+(use-package octave-mod
+ :mode ("\\.m\\'" . octave-mode)
+ :init
+ (progn
+ (defun ravi/octave-shell-switch-to-shell ()
+ "Make sure that `inferior-octave-buffer' exists and is displayed."
+ (interactive)
+ (if (get-buffer inferior-octave-buffer)
+ (pop-to-buffer (get-buffer inferior-octave-buffer))
+ (inferior-octave nil))) )
+ )
+
+(use-package repl-toggle
+ :config
+ (progn
+ (setq rtog/mode-repl-alist '((python-mode . python-shell-switch-to-shell)
+ (octave-mode . ravi/octave-shell-switch-to-shell)
+ (emacs-lisp-mode . ielm)))
+ (add-hook 'python-mode-hook 'rtog/activate)
+ (add-hook 'octave-mode-hook 'rtog/activate)
+ (add-hook 'emacs-lisp-mode-hook 'rtog/activate)
+
+ ; The default keybinding is not great
+ (unbind-key "C-c C-z" repl-toggle-mode-map)
+ (bind-key "<f5>" 'rtog/toggle-repl repl-toggle-mode-map)
+ )
+ :diminish t
+ :ensure t)
+
+(provide 'ravi-init-repl)
+;;; ravi-init-repl.el ends here