joestar

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit a52c521a96819d1e39b1098b17307d1831333c56
parent f060c314e0b6925a95e029bcbf669bfeb1ae32fd
Author: Ryan Jeffrey <pwishie@gmail.com>
Date:   Mon, 21 Oct 2019 21:48:12 -0700

todo removal

Diffstat:
MREADME.org | 1-
Mjoestar.el | 14++------------
2 files changed, 2 insertions(+), 13 deletions(-)

diff --git a/README.org b/README.org @@ -78,7 +78,6 @@ Joe's find function. * TODO Goals for Major Version - [X] Find function -- [ ] Regions - [ ] Keyboard Macro - [ ] Cancel features - [ ] Help buffer diff --git a/joestar.el b/joestar.el @@ -196,12 +196,6 @@ (interactive) (message "%d" (count-windows))) -;; TODO -(defun joe-arg (num) - "Prompt NUM of times to repeat a command." - (interactive "sNo. Times to repeat command: ") - ) - (defun joe-rtn () "Insert return key." (interactive) @@ -212,7 +206,6 @@ (interactive "sInsert: ") (insert str)) -; TODO bug where this does not work with scratch files (defun joe-name () "Insert current file name into the buffer." (interactive) @@ -221,7 +214,6 @@ (insert (file-relative-name (buffer-file-name) default-directory))) (insert (buffer-name)))) -; TODO get the locale (defun joe-language () "Insert the language in the current buffer." (interactive) @@ -272,7 +264,6 @@ (forward-line (1- (string-to-number num)))) -;; TODO make more accurate to joe. (defun joe-backs () "Redefine the what the backspace key does to mimic joe." (interactive) @@ -739,9 +730,8 @@ (save-place-mode t) - ; maybe? - - (undo-tree-mode t)) + (unless (boundp 'joe-no-undo-tree) + (undo-tree-mode t))) (define-globalized-minor-mode global-joestar-mode joestar-mode (lambda () (joestar-mode 1)))