diff options
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -39,6 +39,15 @@ :group 'tools :group 'convenience) +(defcustom bog-citekey-format + "\\([0-9]*[a-z]+[-a-z]*\\)\\([0-9]\\{4\\}\\)\\([a-z]+\\)" + "Regex used to match study citekey. +By default, this matches any sequence of lower case +letters (allowing hyphenation) that is followed by 4 digits and +then lower case letters." + :type 'string + :group 'bog) + (defcustom bog-notes-directory "~/bib" "The name of the directory that Org note are stored in." :group 'bog @@ -84,15 +93,6 @@ alternative is `ido-completing-read'." :group 'bog :type 'string) -(defcustom bog-citekey-format - "\\([0-9]*[a-z]+[-a-z]*\\)\\([0-9]\\{4\\}\\)\\([a-z]+\\)" - "Regex used to match study citekey. -By default, this matches any sequence of lower case -letters (allowing hyphenation) that is followed by 4 digits and -then lower case letters." - :type 'string - :group 'bog) - (defcustom bog-web-search-url "http://scholar.google.com/scholar?q=%s" "URL to use for CITEKEY search. |