Browse Source

Spellcheck

master
Raphael Roberts 6 years ago
parent
commit
9eb3dd2de5
  1. 6
      settings.org

6
settings.org

@ -35,7 +35,7 @@
:config :config
(recentf-mode 1)) (recentf-mode 1))
#+END_SRC #+END_SRC
* Platform dependant
* Platform dependent
** Windows ** Windows
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(when (string-equal system-type "windows-nt") (when (string-equal system-type "windows-nt")
@ -53,7 +53,7 @@
(defun rlbr/case-insensitive-match (string1 string2) (defun rlbr/case-insensitive-match (string1 string2)
(apply 'string-equal (mapcar 'downcase (list string1 string2)))) (apply 'string-equal (mapcar 'downcase (list string1 string2))))
(defun rlbr/output-matches (output-matches-p exe args) (defun rlbr/output-matches (output-matches-p exe args)
"locate the executable whose output satifies output-matches-p when fed args and return the fullpath"
"locate the executable whose output satisfies output-matches-p when fed args and return the full-path"
(let ((exec-path exec-path) (let ((exec-path exec-path)
(output) (output)
(bad) (bad)
@ -221,7 +221,7 @@
(use-package lispy (use-package lispy
:hook ((emacs-lisp-mode) . lispy-mode)) :hook ((emacs-lisp-mode) . lispy-mode))
#+END_SRC #+END_SRC
* Navigation/autocompletion
* Navigation/auto-completion
** Ace window ** Ace window
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package ace-window (use-package ace-window

Loading…
Cancel
Save