summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org8
1 files changed, 0 insertions, 8 deletions
diff --git a/init.org b/init.org
index 9b64940..d858395 100644
--- a/init.org
+++ b/init.org
@@ -1532,14 +1532,6 @@ Position the cursor at its beginning, according to the current mode."
(global-set-key [(shift return)] 'my/smart-open-line)
-(defun my/fix-sentence (arg)
- "Add space to the end of a sentence."
- (interactive "p")
- (let ((sentence-end-double-space nil))
- (loop for i from 1 to arg do
- (forward-sentence 1)
- (insert " "))))
-
;; http://stackoverflow.com/a/18814469/519736
(defun my/copy-buffer-file-name (choice)
"Copy the buffer-file-name to the kill-ring"