summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init.el')
-rw-r--r--emacs/.emacs.d/init.el33
1 files changed, 0 insertions, 33 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index ebc59b5..0c0310e 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -137,21 +137,6 @@ MODE1 is enabled and vice-versa."
;;;; Functions
-(defun oni:change-number-at-point (change-func)
- "Use CHANGE-FUNC to change the number at `point'."
- (let ((num (number-to-string (funcall change-func (number-at-point))))
- (bounds (bounds-of-thing-at-point 'word)))
- (save-excursion
- (delete-region (car bounds) (cdr bounds))
- (insert num))))
-
-(defun oni:change-prev-case (num dir)
- (let ((regfunc (if (eq dir 'up) 'upcase-region 'downcase-region))
- (wordfunc (if (eq dir 'up) 'upcase-word 'downcase-word)))
- (if (> num 1)
- (funcall regfunc (point) (- (point) num))
- (funcall wordfunc -1))))
-
(defun oni:current-jabber-status ()
"Return a string representing the current jabber status."
(or (and (not *jabber-connected*) "Offline")
@@ -159,19 +144,10 @@ MODE1 is enabled and vice-versa."
*jabber-current-status*)
"Online"))
-(defun oni:decrease-number-at-point ()
- "Take the number at `point' and replace it with it decreased by 1."
- (interactive)
- (oni:change-number-at-point #'1-))
-
(defun oni:diary-display-func ()
"Function for `diary-display-hook'."
(diary-fancy-display))
-(defun oni:downcase-prev (num)
- (interactive "p")
- (oni:change-prev-case num 'down))
-
(defun oni:enable (functions)
"Set the `disabled' property for each item in FUNCTIONS to nil."
(mapc #'(lambda (f) (put f 'disabled nil)) functions))
@@ -193,11 +169,6 @@ MODE1 is enabled and vice-versa."
"Function for `haskell-mode-hook'."
(turn-on-haskell-indentation))
-(defun oni:increase-number-at-point ()
- "Take the number at `point' and replace it with it increased by 1."
- (interactive)
- (oni:change-number-at-point #'1+))
-
(defun indent-defun ()
"Indent the current defun."
(interactive)
@@ -657,10 +628,6 @@ If no direction is given, don't split."
"Function for `term-mode-hook'."
(setq truncate-lines nil))
-(defun oni:upcase-prev (num)
- (interactive "p")
- (oni:change-prev-case num 'up))
-
(defun oni:vala-mode-func ()
"Function for `vala-mode-hook'."
(setq indent-tabs-mode nil))