2013-07-08 01:15:05 +02:00
|
|
|
;; A few handy functions I use in init.el (or not, but they're nice to
|
|
|
|
;; have)
|
|
|
|
|
|
|
|
(defun custom-download-theme (url filename)
|
|
|
|
"Downloads a theme through HTTP and places it in ~/.emacs.d/themes"
|
|
|
|
|
|
|
|
;; Ensure the directory exists
|
|
|
|
(unless (file-exists-p "~/.emacs.d/themes")
|
|
|
|
(make-directory "~/.emacs.d/themes"))
|
|
|
|
|
|
|
|
;; Adds the themes folder to the theme load path (if not already
|
|
|
|
;; there)
|
|
|
|
(unless (member "~/.emacs.d/themes" custom-theme-load-path)
|
|
|
|
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes"))
|
|
|
|
|
|
|
|
;; Download file if it doesn't exist.
|
|
|
|
|
|
|
|
(let ((file
|
|
|
|
(concat "~/.emacs.d/themes/" filename)))
|
|
|
|
(unless (file-exists-p file)
|
|
|
|
(url-copy-file url file))))
|
|
|
|
|
2013-07-08 01:39:10 +02:00
|
|
|
(defun custom-download-script (url filename)
|
|
|
|
"Downloads an Elisp script, places it in ~/.emacs/other and then loads it"
|
|
|
|
|
|
|
|
;; Ensure the directory exists
|
|
|
|
(unless (file-exists-p "~/.emacs.d/other")
|
|
|
|
(make-directory "~/.emacs.d/other"))
|
|
|
|
|
|
|
|
;; Download file if it doesn't exist.
|
|
|
|
(let ((file
|
|
|
|
(concat "~/.emacs.d/" filename)))
|
|
|
|
(unless (file-exists-p file)
|
|
|
|
(url-copy-file url file))
|
|
|
|
|
|
|
|
(load file)))
|
|
|
|
|
2013-07-14 23:50:24 +02:00
|
|
|
;; This clones a git repository to 'foldername in .emacs.d
|
|
|
|
;; if there isn't already a folder with that name
|
|
|
|
(defun custom-clone-git (url foldername)
|
|
|
|
"Clones a git repository to .emacs.d/foldername"
|
|
|
|
(let ((fullpath (concat "~/.emacs.d/" foldername)))
|
|
|
|
(unless (file-exists-p fullpath)
|
|
|
|
(shell-command (concat "git clone " url " " fullpath))))
|
|
|
|
)
|
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
;; These come from the emacs starter kit
|
|
|
|
(defun esk-pretty-lambdas ()
|
|
|
|
(font-lock-add-keywords
|
|
|
|
nil `(("(?\\(lambda\\>\\)"
|
|
|
|
(0 (progn (compose-region (match-beginning 1) (match-end 1)
|
|
|
|
,(make-char 'greek-iso8859-7 107))
|
|
|
|
nil))))))
|
|
|
|
|
2013-07-19 13:57:13 +02:00
|
|
|
(defun esk-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)))))
|
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
(defun esk-add-watchwords ()
|
|
|
|
(font-lock-add-keywords
|
|
|
|
nil '(("\\<\\(FIX\\(ME\\)?\\|TODO\\|HACK\\|REFACTOR\\|NOCOMMIT\\)"
|
|
|
|
1 font-lock-warning-face t))))
|
|
|
|
|
|
|
|
(defun esk-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))))
|
|
|
|
|
|
|
|
(defun esk-suck-it (suckee)
|
|
|
|
"Insert a comment of appropriate length about what can suck it."
|
|
|
|
(interactive "MWhat can suck it? ")
|
|
|
|
(let ((prefix (concat ";; " suckee " can s"))
|
|
|
|
(postfix "ck it!")
|
|
|
|
(col (current-column)))
|
|
|
|
(insert prefix)
|
|
|
|
(dotimes (_ (- 80 col (length prefix) (length postfix))) (insert "u"))
|
|
|
|
(insert postfix)))
|
2013-07-08 16:55:56 +02:00
|
|
|
|
2013-07-19 13:57:13 +02:00
|
|
|
(defun esk-turn-off-tool-bar ()
|
|
|
|
(if (functionp 'tool-bar-mode) (tool-bar-mode -1)))
|
|
|
|
|
2013-07-15 13:34:18 +02:00
|
|
|
(defun speak (m &optional voice)
|
2013-07-15 13:42:08 +02:00
|
|
|
(shell-command (if 'voice (concat "say -v " voice " \"" m "\"")
|
|
|
|
(concat "say " m))))
|