diff options
-rwxr-xr-x | emacs.org | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -391,9 +391,8 @@ Generate a random password between 20 and 40 characters (defun org-insert-book () "Insert org-link from ~/Library for book" (interactive) - (let ((book-path (read-file-name "Book: " "~/Library/")) - (book-description (read-string "Title: "))) - (org-insert-link nil book-path book-description))) + (let* ((book-path (read-file-name "Book: " "~/Library/"))) + (org-insert-link nil book-path (file-name-base book-path)))) ;;; Keybindings (define-key org-mode-map (kbd "C-c b") 'org-insert-book) |