2016-08-26 01:19:21 +00:00
|
|
|
|
;;; funcs.el --- Emacs Lisp functions File
|
|
|
|
|
;;
|
2017-01-06 03:51:13 +00:00
|
|
|
|
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
|
2016-08-26 01:19:21 +00:00
|
|
|
|
;;
|
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
|
;;
|
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
|
;;
|
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-10-09 16:57:46 +00:00
|
|
|
|
;; idea from http://www.reddit.com/r/emacs/comments/312ge1/i_created_this_function_because_i_was_tired_of/
|
|
|
|
|
(defun spacemacs/eval-current-form ()
|
|
|
|
|
"Looks for the current def* or set* command then evaluates, unlike `eval-defun', does not go to topmost function"
|
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(search-backward-regexp "(def\\|(set")
|
|
|
|
|
(forward-list)
|
|
|
|
|
(call-interactively 'eval-last-sexp)))
|
|
|
|
|
|
2016-08-26 01:19:21 +00:00
|
|
|
|
(defun spacemacs/nav-find-elisp-thing-at-point-other-window ()
|
|
|
|
|
"Find thing under point and go to it another window."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((symb (variable-at-point)))
|
|
|
|
|
(if (and symb
|
|
|
|
|
(not (equal symb 0))
|
|
|
|
|
(not (fboundp symb)))
|
|
|
|
|
(find-variable-other-window symb)
|
|
|
|
|
(find-function-at-point))))
|
2016-12-24 16:56:24 +00:00
|
|
|
|
|
2017-02-11 21:31:56 +00:00
|
|
|
|
|
|
|
|
|
;; edebug
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/edebug-instrument-defun-on ()
|
|
|
|
|
"Toggle on instrumentalisation for the function under `defun'."
|
|
|
|
|
(interactive)
|
|
|
|
|
(eval-defun 'edebugit))
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/edebug-instrument-defun-off ()
|
|
|
|
|
"Toggle on instrumentalisation for the function under `defun'."
|
|
|
|
|
(interactive)
|
|
|
|
|
(eval-defun))
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/elisp-toggle-debug-expr-and-eval-func ()
|
|
|
|
|
"Insert or remove debug expression, evaluate function and save buffer."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((trace "(debug)")
|
|
|
|
|
(line (thing-at-point 'line)))
|
|
|
|
|
(if (and line (string-match trace line))
|
|
|
|
|
(kill-whole-line)
|
|
|
|
|
(progn
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(insert trace)
|
|
|
|
|
(newline-and-indent))))
|
|
|
|
|
(eval-defun nil)
|
|
|
|
|
(save-buffer))
|
|
|
|
|
|
2017-02-12 17:50:07 +00:00
|
|
|
|
(defun spacemacs//edebug-mode (&rest args)
|
|
|
|
|
"Additional processing when `edebug-mode' is activated or deactivated."
|
|
|
|
|
(let ((evilified (or (eq 'vim dotspacemacs-editing-style)
|
|
|
|
|
(and (eq 'hybrid dotspacemacs-editing-style)
|
|
|
|
|
hybrid-mode-enable-evilified-state))))
|
|
|
|
|
(if (not edebug-mode)
|
|
|
|
|
;; disable edebug-mode
|
|
|
|
|
(when evilified (evil-normal-state))
|
|
|
|
|
;; enable edebug-mode
|
|
|
|
|
(when evilified (evil-evilified-state))
|
|
|
|
|
(evil-normalize-keymaps)
|
|
|
|
|
(when (and (fboundp 'golden-ratio-mode)
|
|
|
|
|
golden-ratio-mode)
|
|
|
|
|
(golden-ratio)))))
|
2017-02-11 21:31:56 +00:00
|
|
|
|
|
2016-12-24 16:56:24 +00:00
|
|
|
|
|
|
|
|
|
;; smartparens integration
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/eval-current-form-sp (&optional arg)
|
|
|
|
|
"Call `eval-last-sexp' after moving out of one level of
|
|
|
|
|
parentheses. Will exit any strings and/or comments first.
|
|
|
|
|
An optional ARG can be used which is passed to `sp-up-sexp' to move out of more
|
|
|
|
|
than one sexp.
|
|
|
|
|
Requires smartparens because all movement is done using `sp-up-sexp'."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(require 'smartparens)
|
|
|
|
|
(let ((evil-move-beyond-eol t))
|
|
|
|
|
;; evil-move-beyond-eol disables the evil advices around eval-last-sexp
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((max 10))
|
|
|
|
|
(while (and (> max 0)
|
|
|
|
|
(sp-point-in-string-or-comment))
|
|
|
|
|
(decf max)
|
|
|
|
|
(sp-up-sexp)))
|
|
|
|
|
(sp-up-sexp arg)
|
|
|
|
|
(call-interactively 'eval-last-sexp))))
|
|
|
|
|
|
|
|
|
|
(defun spacemacs/eval-current-symbol-sp ()
|
|
|
|
|
"Call `eval-last-sexp' on the symbol around point.
|
|
|
|
|
Requires smartparens because all movement is done using `sp-forward-symbol'."
|
|
|
|
|
(interactive)
|
|
|
|
|
(require 'smartparens)
|
|
|
|
|
(let ((evil-move-beyond-eol t))
|
|
|
|
|
;; evil-move-beyond-eol disables the evil advices around eval-last-sexp
|
|
|
|
|
(save-excursion
|
|
|
|
|
(sp-forward-symbol)
|
|
|
|
|
(call-interactively 'eval-last-sexp))))
|