Skip to content

Commit

Permalink
Merged my-upcase-downcase-word.el to basic-config.el
Browse files Browse the repository at this point in the history
  • Loading branch information
tototoshi committed Feb 15, 2014
1 parent 04b4c12 commit ef3f993
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
11 changes: 11 additions & 0 deletions basic-config.el
Expand Up @@ -178,3 +178,14 @@
(end-of-line)
(setq end (point))
(delete-region beg (min (1+ end) (point-max)))))

;; 直前の単語の大文字/小文字切り替え
(defun upcase-previous-word ()
(interactive)
(upcase-word -1)
(backward-word))

(defun downcase-previous-word ()
(interactive)
(downcase-word -1)
(backward-word))
9 changes: 0 additions & 9 deletions my-upcase-downcase-word.el

This file was deleted.

0 comments on commit ef3f993

Please sign in to comment.