0ce1bf39d9d463295f6a19a4c14273dce402c740
commit 0ce1bf39d9d463295f6a19a4c14273dce402c740
Author: Simon Watson <spw01@protonmail.com>
Date: Sat Jul 24 21:18:36 2021 -0400

Added small file for helper funs

diff --git a/emacs/.emacs-all b/emacs/.emacs-all
index 09ea6b0..ab4bc99 100644
--- a/emacs/.emacs-all
+++ b/emacs/.emacs-all
@@ -202,6 +202,9 @@
(global-set-key (kbd "C-c o") 'rclone-post-buffer)
(global-set-key (kbd "C-c C-o") 'rclone-get-org)

+;; Small helper functions
+(load "~/Repos/dotfiles/emacs/elisp/helpers.el")
+(global-set-key (kbd "C-c C-x f") 'display-full-buffer-path)

;; Load for macOS
;;; Slime/etc
diff --git a/emacs/elisp/helpers.el b/emacs/elisp/helpers.el
new file mode 100644
index 0000000..975ec3e
--- /dev/null
+++ b/emacs/elisp/helpers.el
@@ -0,0 +1,4 @@
+(defun display-full-buffer-path ()
+ (interactive)
+ "Little helper for showing full file path in minibuffer"
+ (message (buffer-file-name)))