I am trying to change ebib--field-edit-functions
in Ebib to add address to its fields with completions. The manual says that you need to customize the user option ebib--field-edit-functions
(actually, it says ebib-edit-fields-functions
which is likely a typo), but I can't find it. Nor can I do it manually in the init file. The option is set in ebib-utils.el
. Any ideas how to do this?
Asked
Active
Viewed 53 times
0

Jabot
- 5
- 2
-
Question double-posted on a related stackexchange: https://emacs.stackexchange.com/questions/78022/ebib-edit-completions – Trevoke Jul 18 '23 at 12:07
1 Answers
1
Note that Elisp
functions with the --
(double hyphen) in their names are for internal calls only. This is stated in Coding Conventions [or (info "(elisp) Coding Conventions")
] and Tips for Defining [or (info "(elisp) Tips for Defining")
].
Make sure to have the latest version of ebib
package installed. The function ebib-field-edit-functions
was added in Version 2.39, hence the manual is not wrong.
[It was preceded by the now obsolete function ebib-fields-with-completion
, so you might have this defcustom
available with an older version of ebib
.]

Y. E.
- 687
- 1
- 10
- 29
-
Sorry, this looks out of Stackoverflow etiquette to me (same as double-posting, BTW). For more details see [What should I do when someone answers my question?](https://stackoverflow.com/help/someone-answers) (thanks part). [What is the the best way to ask follow up questions?](https://meta.stackoverflow.com/q/266767/1319821) (follow-up question). – Y. E. Jul 19 '23 at 08:33