Yes, of course:
init.el configuration :
---------
(add-to-list 'load-path “/home/.../org-mode/lisp”)
(require 'org-capture)
(setq org-capture-templates
'((“t” “Todo” entry (file+headline “/home/user/Testdedossier/src/.emacs.d/
test.org” “Tasks”)
“* TODO %^{Name task}\n %i\n %a”)))
(global-set-key (kbd “C-c c”) 'org-capture)
---------
Now, call org-capture, select "t". IN creating the "title" = "Name Task" of the first capture, call up a second capture. Finish the second capture.
Return to the first capture's title/“Name task”. End the first capture's “Name task”, and note the error:
condition-case: Capture abort: Selecting deleted buffer
Expected behaviour: correct completion of first capture.