-
Notifications
You must be signed in to change notification settings - Fork 4
Description
It's sort of a weird issue. I'm just taking notes while learning Apache Spark through a course I got on Udemy.
Behaviour
Doing M-x org-notebook-new-notebook and typing in a name for the notebook (for me it's ~/Documents/OrgProgShit/Apache-Spark) and upon pressing RET the minibuffer will show Notebook name: ~/Audio. Pressing RET again says /home/my_user/Audio/[some random audio file in that directory]. This happens always regardless of the name given for the new notebook, whether you type in .org after the name, and if there's a specific created empty directory for the new notebook.
Expected Behaviou
Actually being about to create a new notebook, or at least getting an error for why I can't create one.
Configuration files
Here's all I have in a file that I load in my init.el for Org stuff (path to it is ~/.emacs.d/layers/org/org-cfg.el):
;; Couple of basic keys (others will be in keys.el)
(global-set-key (kbd "C-c l") 'org-store-link)
(global-set-key (kbd "C-c a") 'org-agenda)
(global-set-key (kbd "C-c c") 'org-capture)
(global-set-key (kbd "C-c b") 'org-iswitchb)
(setq org-todo-keywords
'((sequence "TODO(t)" "|" "DONE(d)")
(sequence "WAITING(w)" "VERIFY(v)" "IDLE(i)" "|" "ALMOST(a)" "FIXED(x)")
(sequence "|" "FEEDBACK(e)")
(sequence "|" "CANCELED(c)")))
;; Buncha Orgmode addons
(use-package org-autolist
:ensure t
:hook (org-mode-hook . org-autolist-mode))
(use-package org-brain
:ensure t
:after org-mode)
(use-package org-notebook
:ensure t)
(use-package org-journal
:ensure t
:after org-mode)
(use-package org-ref
:ensure t
:after org-mode)
(use-package org-edit-latex
:ensure t
:after org-mode)
;;
; Fancy Bullets
(use-package org-bullets
:ensure t
:commands 'org-mode
:init
(add-hook 'org-mode-hook
(lambda () (org-bullets-mode 1))))
;
;;
;; Extra Org-Babel packages
(use-package ob-async
:ensure t)
(use-package ob-browser
:ensure t)
(use-package ob-kotlin
:ensure t)
(use-package ob-hy
:ensure t)
;;
(provide 'org-cfg)
;; EOF
System Info and such
OS: GNU/Linux
Emacs Version: 25.3.1
Org Version (from Melpa): 2017-12-25
Org-Notebook Version (from Melpa): 2017-03-21.2152