From 168bcf9c5804532f4017ccca4d83200cedb7c6b3 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 17 Dec 2015 00:58:26 +0100 Subject: Move editing functions to separate library --- emacs/.emacs.d/init.el | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'emacs/.emacs.d/init.el') 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)) -- cgit v1.2.3-54-g00ecf