summary refs log tree commit diff
path: root/emacs.d/core/core-defun.el
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-03-10 19:46:58 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-03-10 19:47:29 -0800
commitea20a06ca11d852b6020e97b945de34b0553b822 (patch)
treee8002c0956c4fba74b31a63a287f280c3bfa7430 /emacs.d/core/core-defun.el
parent[emacs] Add configuration for scala (diff)
downloademacs.d-ea20a06ca11d852b6020e97b945de34b0553b822.tar.gz
[emacs] Rename a couple of functions
Diffstat (limited to 'emacs.d/core/core-defun.el')
-rw-r--r--emacs.d/core/core-defun.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs.d/core/core-defun.el b/emacs.d/core/core-defun.el
index 5180e68..ad17af4 100644
--- a/emacs.d/core/core-defun.el
+++ b/emacs.d/core/core-defun.el
@@ -1,4 +1,4 @@
-(defun fcuny/switch-to-scratch ()
+(defun fc/switch-to-scratch ()
   "Switch to scratch, grab the region if it's active."
   (interactive)
   (let ((contents
@@ -11,7 +11,7 @@
           (goto-char (buffer-end 1))
           (insert contents)))))
 
-(defun fcuny/rename-this-buffer-and-file ()
+(defun fc/rename-this-buffer-and-file ()
   "Renames current buffer and file it is visiting."
   (interactive)
   (let ((name (buffer-name))
@@ -29,7 +29,7 @@
                (set-buffer-modified-p nil)
                (message "File '%s' successfully renamed to '%s'" name (file-name-nondirectory new-name))))))))
 
-(defun fcuny/visit-term-buffer ()
+(defun fc/visit-term-buffer ()
   "Create or visit a terminal buffer."
   (interactive)
   (if (not (get-buffer "*ansi-term*"))