2013-11-26 14:46:27 +00:00
|
|
|
(defun load-user-config ()
|
|
|
|
(progn (when (file-exists-p user-config-directory)
|
|
|
|
(dolist (l (directory-files user-config-directory nil "^[^#].*el$"))
|
|
|
|
(load (concat user-config-directory l))))))
|
|
|
|
(defun load-host-config ()
|
|
|
|
(progn (when (file-exists-p host-directory)
|
|
|
|
(dolist (l (directory-files host-directory nil "^[^#].*el$"))
|
|
|
|
(load (concat host-directory l))))))
|
|
|
|
|
2013-04-18 21:21:31 +00:00
|
|
|
;; insert one or several line below without changing current evil state
|
|
|
|
(defun evil-insert-line-below (count)
|
|
|
|
"Insert one of several lines below the current point's line without changing
|
|
|
|
the current state and point position."
|
|
|
|
(interactive "p")
|
|
|
|
(save-excursion
|
|
|
|
(evil-save-state (evil-open-below count))))
|
|
|
|
|
|
|
|
;; insert one or several line above without changing current evil state
|
|
|
|
(defun evil-insert-line-above (count)
|
|
|
|
"Insert one of several lines above the current point's line without changing
|
|
|
|
the current state and point position."
|
|
|
|
(interactive "p")
|
|
|
|
(save-excursion
|
|
|
|
(evil-save-state (evil-open-above count))))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
|
|
|
(defun eval-and-replace ()
|
|
|
|
"Replace the preceding sexp with its value."
|
|
|
|
(interactive)
|
|
|
|
(backward-kill-sexp)
|
|
|
|
(condition-case nil
|
|
|
|
(prin1 (eval (read (current-kill 0)))
|
|
|
|
(current-buffer))
|
|
|
|
(error (message "Invalid expression")
|
|
|
|
(insert (current-kill 0)))))
|
|
|
|
|
2012-12-20 21:51:11 +00:00
|
|
|
;; from https://gist.github.com/3402786
|
|
|
|
(defun toggle-maximize-buffer () "Maximize buffer"
|
|
|
|
(interactive)
|
|
|
|
(if (= 1 (length (window-list)))
|
|
|
|
(jump-to-register '_)
|
|
|
|
(progn
|
|
|
|
(set-register '_ (list (current-window-configuration)))
|
|
|
|
(delete-other-windows))))
|
|
|
|
|
2013-11-15 13:03:14 +00:00
|
|
|
;; from magnars modified by ffevotte for dedicated windows support
|
2013-02-03 20:58:25 +00:00
|
|
|
(defun rotate-windows (count)
|
|
|
|
"Rotate your windows.
|
|
|
|
Dedicated windows are left untouched. Giving a negative prefix
|
2013-02-20 19:06:31 +00:00
|
|
|
argument takes the kindows rotate backwards."
|
2013-02-03 20:58:25 +00:00
|
|
|
(interactive "p")
|
|
|
|
(let* ((non-dedicated-windows (remove-if 'window-dedicated-p (window-list)))
|
|
|
|
(num-windows (length non-dedicated-windows))
|
|
|
|
(i 0)
|
|
|
|
(step (+ num-windows count)))
|
|
|
|
(cond ((not (> num-windows 1))
|
|
|
|
(message "You can't rotate a single window!"))
|
|
|
|
(t
|
|
|
|
(dotimes (counter (- num-windows 1))
|
|
|
|
(let* ((next-i (% (+ step i) num-windows))
|
|
|
|
|
|
|
|
(w1 (elt non-dedicated-windows i))
|
|
|
|
(w2 (elt non-dedicated-windows next-i))
|
|
|
|
|
|
|
|
(b1 (window-buffer w1))
|
|
|
|
(b2 (window-buffer w2))
|
|
|
|
|
|
|
|
(s1 (window-start w1))
|
|
|
|
(s2 (window-start w2)))
|
|
|
|
(set-window-buffer w1 b2)
|
|
|
|
(set-window-buffer w2 b1)
|
|
|
|
(set-window-start w1 s2)
|
|
|
|
(set-window-start w2 s1)
|
|
|
|
(setq i next-i)))))))
|
2012-12-18 05:48:12 +00:00
|
|
|
|
2013-02-20 19:06:31 +00:00
|
|
|
(defun rotate-windows-backward (count)
|
2013-02-19 23:12:10 +00:00
|
|
|
"Rotate your windows backward."
|
2013-02-20 19:06:31 +00:00
|
|
|
(interactive "p")
|
|
|
|
(rotate-windows (* -1 count)))
|
2013-02-19 23:12:10 +00:00
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun rename-current-buffer-file ()
|
|
|
|
"Renames current buffer and file it is visiting."
|
|
|
|
(interactive)
|
|
|
|
(let ((name (buffer-name))
|
|
|
|
(filename (buffer-file-name)))
|
|
|
|
(if (not (and filename (file-exists-p filename)))
|
|
|
|
(error "Buffer '%s' is not visiting a file!" name)
|
|
|
|
(let ((new-name (read-file-name "New name: " filename)))
|
|
|
|
(cond ((get-buffer new-name)
|
|
|
|
(error "A buffer named '%s' already exists!" new-name))
|
|
|
|
(t
|
|
|
|
(rename-file filename new-name 1)
|
|
|
|
(rename-buffer new-name)
|
|
|
|
(set-visited-file-name new-name)
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(message "File '%s' successfully renamed to '%s'" name (file-name-nondirectory new-name))))))))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun delete-current-buffer-file ()
|
|
|
|
"Removes file connected to current buffer and kills buffer."
|
|
|
|
(interactive)
|
|
|
|
(let ((filename (buffer-file-name))
|
|
|
|
(buffer (current-buffer))
|
|
|
|
(name (buffer-name)))
|
|
|
|
(if (not (and filename (file-exists-p filename)))
|
|
|
|
(ido-kill-buffer)
|
|
|
|
(when (yes-or-no-p "Are you sure you want to remove this file? ")
|
|
|
|
(delete-file filename)
|
|
|
|
(kill-buffer buffer)
|
|
|
|
(message "File '%s' successfully removed" filename)))))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun find-or-create-file-at-point ()
|
|
|
|
"Guesses what parts of the buffer under point is a file name and opens it."
|
|
|
|
(interactive)
|
|
|
|
(find-file (file-name-at-point)))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun find-or-create-file-at-point-other-window ()
|
|
|
|
"Guesses what parts of the buffer under point is a file name and opens it."
|
|
|
|
(interactive)
|
|
|
|
(find-file-other-window (file-name-at-point)))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun file-name-at-point ()
|
|
|
|
(save-excursion
|
|
|
|
(let* ((file-name-regexp "[./a-zA-Z0-9\-_~]")
|
|
|
|
(start (progn
|
|
|
|
(while (looking-back file-name-regexp)
|
|
|
|
(forward-char -1))
|
|
|
|
(point)))
|
|
|
|
(end (progn
|
|
|
|
(while (looking-at file-name-regexp)
|
|
|
|
(forward-char 1))
|
|
|
|
(point))))
|
|
|
|
(buffer-substring start end))))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun touch-buffer-file ()
|
|
|
|
(interactive)
|
|
|
|
(insert " ")
|
|
|
|
(backward-delete-char 1)
|
|
|
|
(save-buffer))
|
|
|
|
|
2012-12-30 17:18:08 +00:00
|
|
|
;; from magnars
|
2012-12-29 20:39:39 +00:00
|
|
|
(defun sudo-edit (&optional arg)
|
|
|
|
(interactive "p")
|
|
|
|
(if (or arg (not buffer-file-name))
|
|
|
|
(find-file (concat "/sudo:root@localhost:" (ido-read-file-name "File: ")))
|
|
|
|
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
|
|
|
|
|
2013-01-02 22:08:45 +00:00
|
|
|
;; found at http://emacswiki.org/emacs/KillingBuffers
|
|
|
|
(defun kill-other-buffers ()
|
|
|
|
"Kill all other buffers."
|
|
|
|
(interactive)
|
2013-01-03 20:34:42 +00:00
|
|
|
(let (name (buffer-name))
|
|
|
|
(when (yes-or-no-p (format "Killing all buffers except \"%s\" ? " buffer-file-name))
|
|
|
|
(mapc 'kill-buffer (delq (current-buffer) (buffer-list)))
|
|
|
|
(message "Buffers deleted!"))))
|
2013-01-02 22:08:45 +00:00
|
|
|
|
2013-01-07 21:59:36 +00:00
|
|
|
;; evenly split windows horizontally
|
|
|
|
(defun evenly-split-window-right ()
|
2013-01-08 16:09:21 +00:00
|
|
|
"Evenly split frame horizontally."
|
2013-01-07 21:59:36 +00:00
|
|
|
(interactive)
|
|
|
|
(split-window-right)
|
|
|
|
(balance-windows))
|
|
|
|
;; evenly split windows vertically
|
|
|
|
(defun evenly-split-window-below ()
|
2013-01-08 16:09:21 +00:00
|
|
|
"Evenly split frame vertically."
|
2013-01-07 21:59:36 +00:00
|
|
|
(interactive)
|
|
|
|
(split-window-below)
|
|
|
|
(balance-windows))
|
|
|
|
|
2013-01-08 16:09:21 +00:00
|
|
|
;; from http://dfan.org/blog/2009/02/19/emacs-dedicated-windows/
|
|
|
|
(defun toggle-current-window-dedication ()
|
|
|
|
"Toggle dedication state of a window."
|
|
|
|
(interactive)
|
|
|
|
(let* ((window (selected-window))
|
|
|
|
(dedicated (window-dedicated-p window)))
|
|
|
|
(set-window-dedicated-p window (not dedicated))
|
|
|
|
(message "Window %sdedicated to %s"
|
|
|
|
(if dedicated "no longer " "")
|
|
|
|
(buffer-name))))
|
|
|
|
|
2013-11-15 13:03:14 +00:00
|
|
|
;; http://camdez.com/blog/2013/11/14/emacs-show-buffer-file-name/
|
|
|
|
(defun camdez/show-buffer-file-name ()
|
|
|
|
"Show the full path to the current file in the minibuffer."
|
|
|
|
(interactive)
|
|
|
|
(let ((file-name (buffer-file-name)))
|
|
|
|
(if file-name
|
|
|
|
(progn
|
|
|
|
(message file-name)
|
|
|
|
(kill-new file-name))
|
|
|
|
(error "Buffer not visiting a file"))))
|
2013-04-15 15:12:39 +00:00
|
|
|
|
2013-11-26 05:24:50 +00:00
|
|
|
;; adapted from bozhidar
|
2013-11-15 15:55:23 +00:00
|
|
|
;; http://emacsredux.com/blog/2013/05/18/instant-access-to-init-dot-el/
|
|
|
|
(defun find-user-init-file ()
|
2013-11-26 05:24:50 +00:00
|
|
|
"Edit the `user-init-file', in the current window."
|
2013-11-15 15:55:23 +00:00
|
|
|
(interactive)
|
2013-11-18 02:14:33 +00:00
|
|
|
(find-file-existing user-init-file))
|
2013-11-15 15:55:23 +00:00
|
|
|
|
2013-11-26 05:24:50 +00:00
|
|
|
;; From http://stackoverflow.com/a/18796138
|
|
|
|
;; Cycle through this set of themes
|
2013-12-02 13:20:20 +00:00
|
|
|
(setq my-themes '(solarized-dark
|
|
|
|
solarized-light
|
2013-12-02 13:40:12 +00:00
|
|
|
monokai
|
|
|
|
anti-zenburn
|
2013-12-02 13:20:20 +00:00
|
|
|
zenburn))
|
2013-11-26 05:24:50 +00:00
|
|
|
(setq my-cur-theme nil)
|
|
|
|
(defun cycle-my-theme ()
|
|
|
|
"Cycle through a list of themes, my-themes"
|
2013-04-15 15:12:39 +00:00
|
|
|
(interactive)
|
2013-11-26 05:24:50 +00:00
|
|
|
(when my-cur-theme
|
|
|
|
(disable-theme my-cur-theme)
|
|
|
|
(setq my-themes (append my-themes (list my-cur-theme))))
|
|
|
|
(setq my-cur-theme (pop my-themes))
|
|
|
|
(load-theme my-cur-theme t)
|
|
|
|
;; due to the transparent background of our custom fringe:
|
|
|
|
;; use foreground of the flycheck faces as background for color-mode line
|
|
|
|
(eval-after-load "flycheck-color-mode-line"
|
|
|
|
'(progn
|
|
|
|
(set-face-attribute 'flycheck-color-mode-line-error-face nil :background (face-foreground 'flycheck-fringe-error))
|
|
|
|
(set-face-attribute 'flycheck-color-mode-line-warning-face nil :background (face-foreground 'flycheck-fringe-warning))
|
|
|
|
(set-face-attribute 'flycheck-color-mode-line-info-face nil :background (face-foreground 'flycheck-fringe-info)))))
|
2013-11-15 13:03:14 +00:00
|
|
|
|
2013-11-20 05:30:23 +00:00
|
|
|
;; From http://xugx2007.blogspot.ca/2007/06/benjamin-rutts-emacs-c-development-tips.html
|
|
|
|
(setq compilation-finish-function
|
|
|
|
(lambda (buf str)
|
|
|
|
|
|
|
|
(if (or (string-match "exited abnormally" str)
|
|
|
|
(string-match "FAILED" (buffer-string)))
|
|
|
|
|
|
|
|
;;there were errors
|
|
|
|
(message "There were errors. SPC-e-n to visit.")
|
|
|
|
|
|
|
|
;;no errors, make the compilation window go away in 0.5 seconds
|
|
|
|
(delete-windows-on buf)
|
|
|
|
(message "compilation ok."))))
|
|
|
|
|
2013-11-24 04:04:26 +00:00
|
|
|
;; from https://gist.github.com/cofi/3013327
|
|
|
|
(defun cofi/helm-flyspell-correct ()
|
|
|
|
"Use helm for flyspell correction.
|
|
|
|
Adapted from `flyspell-correct-word-before-point'."
|
|
|
|
(interactive)
|
|
|
|
;; use the correct dictionary
|
|
|
|
(flyspell-accept-buffer-local-defs)
|
|
|
|
(let ((cursor-location (point))
|
|
|
|
(word (flyspell-get-word))
|
|
|
|
(opoint (point)))
|
|
|
|
(if (consp word)
|
|
|
|
(let ((start (car (cdr word)))
|
|
|
|
(end (car (cdr (cdr word))))
|
|
|
|
(word (car word))
|
|
|
|
poss ispell-filter)
|
|
|
|
;; now check spelling of word.
|
|
|
|
(ispell-send-string "%\n") ;put in verbose mode
|
|
|
|
(ispell-send-string (concat "^" word "\n"))
|
|
|
|
;; wait until ispell has processed word
|
|
|
|
(while (progn
|
|
|
|
(accept-process-output ispell-process)
|
|
|
|
(not (string= "" (car ispell-filter)))))
|
|
|
|
;; Remove leading empty element
|
|
|
|
(setq ispell-filter (cdr ispell-filter))
|
|
|
|
;; ispell process should return something after word is sent.
|
|
|
|
;; Tag word as valid (i.e., skip) otherwise
|
|
|
|
(or ispell-filter
|
|
|
|
(setq ispell-filter '(*)))
|
|
|
|
(if (consp ispell-filter)
|
|
|
|
(setq poss (ispell-parse-output (car ispell-filter))))
|
|
|
|
(cond
|
|
|
|
((or (eq poss t) (stringp poss))
|
|
|
|
;; don't correct word
|
|
|
|
t)
|
|
|
|
((null poss)
|
|
|
|
;; ispell error
|
|
|
|
(error "Ispell: error in Ispell process"))
|
|
|
|
(t
|
|
|
|
;; The word is incorrect, we have to propose a replacement.
|
|
|
|
(flyspell-do-correct (helm-comp-read "Correction: "
|
|
|
|
(append
|
|
|
|
(third poss)
|
|
|
|
'(("Save word" . save)
|
|
|
|
("Accept (session)" . session)
|
|
|
|
("Accept (buffer)" . buffer)))
|
|
|
|
:name (format "%s [%s]" word (or ispell-local-dictionary
|
|
|
|
ispell-dictionary
|
|
|
|
"Default"))
|
|
|
|
:must-match t
|
|
|
|
:alistp t)
|
|
|
|
|
|
|
|
poss word cursor-location start end opoint)))
|
|
|
|
(ispell-pdict-save t)))))
|
|
|
|
|
2013-11-25 05:18:28 +00:00
|
|
|
(defun set-google-translate-languages (source target)
|
|
|
|
"Set source language for google translate.
|
|
|
|
For instance pass En as source for english."
|
|
|
|
(interactive "sEnter source language (ie. En): \nsEnter target language (ie. En): "
|
|
|
|
source target)
|
|
|
|
(message (format "Set google translate source language to %s and target to %s"
|
|
|
|
source target))
|
|
|
|
(setq google-translate-default-source-language source)
|
|
|
|
(setq google-translate-default-target-language target))
|
|
|
|
|
2013-12-03 13:53:29 +00:00
|
|
|
;; from http://www.emacswiki.org/emacs/WordCount
|
|
|
|
(defun count-words-analysis (start end)
|
|
|
|
"Count how many times each word is used in the region.
|
|
|
|
Punctuation is ignored."
|
|
|
|
(interactive "r")
|
|
|
|
(let (words)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char start)
|
|
|
|
(while (re-search-forward "\\w+" end t)
|
|
|
|
(let* ((word (intern (match-string 0)))
|
|
|
|
(cell (assq word words)))
|
|
|
|
(if cell
|
|
|
|
(setcdr cell (1+ (cdr cell)))
|
|
|
|
(setq words (cons (cons word 1) words))))))
|
|
|
|
(when (interactive-p)
|
|
|
|
(message "%S" words))
|
|
|
|
words))
|
|
|
|
|
2013-11-15 13:03:14 +00:00
|
|
|
(provide 'my-funcs)
|