tmalsburg / helm-bibtex

Search and manage bibliographies in Emacs
GNU General Public License v2.0
464 stars 74 forks source link

(setq helm-bibtex-full-frame nil) not working #307

Closed atanasj closed 4 years ago

atanasj commented 4 years ago

I cannot get helm-bibtex out of full frame. My config is:

 (use-package helm-bibtex
    :config
    (setq bibtex-completion-bibliography '"~/.pandoc/MyLib.bib")
    (setq bibtex-completion-pdf-field "File")
    (setq bibtex-completion-pdf-open-function
          (lambda (fpath)
            (call-process "open" nil 0 nil "-a" "/Applications/PDF Expert.app" fpath)))
    (setq bibtex-completion-display-formats
          '((article       . "${=has-pdf=:1}${=has-note=:1} ${=type=:3} ${year:4} ${author:36} ${title:*} ${journal:40}")
            (inbook        . "${=has-pdf=:1}${=has-note=:1} ${=type=:3} ${year:4} ${author:36} ${title:*} Chapter ${chapter:32}")
            (incollection  . "${=has-pdf=:1}${=has-note=:1} ${=type=:3} ${year:4} ${author:36} ${title:*} ${booktitle:40}")
            (inproceedings . "${=has-pdf=:1}${=has-note=:1} ${=type=:3} ${year:4} ${author:36} ${title:*} ${booktitle:40}")
            (t             . "${=has-pdf=:1}${=has-note=:1} ${=type=:3} ${year:4} ${author:36} ${title:*}")))
    (setq bibtex-completion-additional-search-fields '(keywords))
    (setq bibtex-completion-pdf-symbol "⌘")
    (setq bibtex-completion-notes-symbol "✎")
    (setq bibtex-completion-format-citation-functions
          '((org-mode      . bibtex-completion-format-citation-org-link-to-PDF)
            (latex-mode    . bibtex-completion-format-citation-cite)
            (markdown-mode . bibtex-completion-format-citation-pandoc-citeproc)
            (default       . bibtex-completion-format-citation-default)))
    (setq helm-bibtex-default-action 'helm-bibtex-insert-citation)
    (setq helm-bibtex-full-frame nil)
    :bind
    ("s-b" . helm-bibtex)
    )

This was working, but is now broken. I am on MacOS with Emacs (emacs-plus) 26.3. Hopefully this is fixable because it is such a great package otherwise.

atanasj commented 4 years ago

Somehow seems to have resolved itself after restarting…