diff --git a/index.html b/index.html index 9f03245a..f7ad326c 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + @@ -514,7 +514,7 @@ for the JavaScript code in this tag.
  • 12.1.3.6. edebug
  • 12.1.3.7. overseer
  • 12.1.3.8. Misc
  • -
  • 12.1.3.9. Show result of eval-last-sexp inline
  • +
  • 12.1.3.9. eros
  • 12.1.3.10. Reevalute defvars when running eval-last-sexp
  • 12.1.3.11. Init hook
  • 12.1.3.12. Keybinds
  • @@ -4240,38 +4240,15 @@ Reduce indentation for some functions -
    -
    12.1.3.9 Show result of eval-last-sexp inline
    +
    +
    12.1.3.9 eros
    -

    -Taken from http://endlessparentheses.com/eval-result-overlays-in-emacs-lisp.html -

    -
    (autoload 'cider--make-result-overlay "cider-overlays")
    -
    -(defun imalison:eval-overlay (value point)
    -  (cider--make-result-overlay (format "%S" value)
    -    :where point
    -    :duration 'command)
    -  value)
    -
    -(advice-add 'eval-region :around
    -            (lambda (f beg end &rest r)
    -              (imalison:eval-overlay
    -               (apply f beg end r)
    -               end)))
    -
    -(advice-add 'eval-last-sexp :filter-return
    -            (lambda (r)
    -              (imalison:eval-overlay r (point))))
    -
    -(advice-add 'eval-defun :filter-return
    -            (lambda (r)
    -              (imalison:eval-overlay
    -               r
    -               (save-excursion
    -                 (end-of-defun)
    -                 (point)))))
    +
    (use-package eros
    +  :commands (eros-mode)
    +  :preface
    +  (progn
    +    (add-hook 'emacs-lisp-mode-hook 'eros-mode)))
     
    @@ -5289,7 +5266,7 @@ This function replaces the default naming scheme with a call to
    12.3.1.5 org-projectile
    -
    (imalison:use-package org-projectile
    +
    (use-package org-projectile
       :after helm
       :bind (("C-c n p" . imalison:helm-org-todo))
       :config
    @@ -7360,7 +7337,7 @@ load-theme hook (See the heading below).
     

    Author: Ivan Malison

    -

    Created: 2016-12-24 Sat 23:57

    +

    Created: 2016-12-26 Mon 01:12

    Validate