[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] org-crypt doesn't automatically encrypt on save
From: |
Darlan Cavalcante Moreira |
Subject: |
Re: [O] org-crypt doesn't automatically encrypt on save |
Date: |
Thu, 11 Sep 2014 20:03:51 -0300 |
User-agent: |
mu4e 0.9.9.5; emacs 24.3.93.1 |
You need to load org-crypt and call org-crypt-use-before-save-magic
before you open the org file.
For instance, my configuration for org-crypt is
--8<---------------cut here---------------start------------->8---
(autoload 'org-decrypt-entry "org-crypt.el" "Decrypt the content of the current
headline." t)
(autoload 'org-decrypt-entries "org-crypt.el" "Decrypt all entries in the
current buffer." t)
(autoload 'org-encrypt-entry "org-crypt.el" "Encrypt the content of the current
headline." t)
(autoload 'org-encrypt-entries "org-crypt.el" "Encrypt all top-level entries in
the current buffer." t)
(with-eval-after-load "org-crypt"
;; Automatically encrypts everything that has the tag "crypt"
;; when you save the file
(org-crypt-use-before-save-magic)
(setq org-tags-exclude-from-inheritance (quote ("crypt" "Project")))
(setq org-crypt-key "8NUMBERS")
(setq org-crypt-disable-auto-save t)
)
--8<---------------cut here---------------end--------------->8---
Only this gives the same problem you have. When I decrypt an entry
org-crypt is finally loaded but since I'm already visiting the file then
the save magic will not kick in. In my case I only have one file where I
use org-crypt and I define the function below
--8<---------------cut here---------------start------------->8---
(defun my-find-senhas-org-heading nil
(interactive)
(require 'org-crypt)
(find-file "~/org/passwords.org")
)
--8<---------------cut here---------------end--------------->8---
If I often used org-crypt in any org file I would always require
org-crypt and call org-crypt-use-before-save-magic in my Emacs
configuration, but since I only use for this particular file, then
defining a function to visit this file works better for me.
address@hidden writes:
> Hello org-mode World,
>
> is anyone successfully using org-crypt with
> org-crypt-use-before-save-magic ?
>
> I set it up as per the docs, but apparently the org-mode
> before-save-hook is not populated with org-encrypt-entries as it should
> when I open an org buffer, meaning that crypt tagged headlines are not
> encrypted when I save the file
>
> *but* it works if I manually call M-x org-mode after opening the file...
>
> In summary:
>
> C-x C-f test.org / M-x org-decrypt-entry / C-x C-s does not reencrypt
> the entry
>
> C-x C-f test.org / M-x org-mode / M-x org-decrypt-entry / C-x C-s does
> work as expected.
>
> Any idea ?
>
> I'm using the Emacs Starter Kit, so that might interfere, but I can't
> see how and where...
>
> Thanks,
> --
> Rémi
--
Darlan Cavalcante Moreira
address@hidden
- [O] org-crypt doesn't automatically encrypt on save, Rémi Letot, 2014/09/11
- Re: [O] org-crypt doesn't automatically encrypt on save,
Darlan Cavalcante Moreira <=
- Re: [O] org-crypt doesn't automatically encrypt on save, Rémi Letot, 2014/09/12
- Re: [O] org-crypt doesn't automatically encrypt on save, Darlan Cavalcante Moreira, 2014/09/12
- [O] org-mode-hook not called when entering org files (Was: Re: org-crypt doesn't automatically encrypt on save), Rémi Letot, 2014/09/12
- Re: [O] org-mode-hook not called when entering org files, Nick Dokos, 2014/09/12
- Re: [O] org-mode-hook not called when entering org files, Rémi Letot, 2014/09/13
- Re: [O] org-mode-hook not called when entering org files, Nick Dokos, 2014/09/15
- Re: [O] org-mode-hook not called when entering org files, Rémi Letot, 2014/09/16
- Re: [O] org-mode-hook not called when entering org files, Nick Dokos, 2014/09/16
- Re: [O] org-mode-hook not called when entering org files, Nick Dokos, 2014/09/15
- Re: [O] org-crypt doesn't automatically encrypt on save, Jorge A. Alfaro-Murillo, 2014/09/12