emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] project-explorer package forcing new frame... better solution than m


From: Brady Trainor
Subject: [O] project-explorer package forcing new frame... better solution than mine?
Date: Fri, 14 Nov 2014 20:22:58 -0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

Hi, I'm trying the project-explorer package. It uses a persistent window for a 
browsing tree.

This causes a new frame when using any of org-export-dispatch, org-agenda-view 
menu, ibuffer-other-window, and org-insert-link. (My C-c C-e, C-c C-a, C-x C-b, 
C-c C-l.) 

I've made a solution for the export-dispatch (since I use project-explorer and 
org-export quite a bit for my Jekyll site). The solution is as follows:

#+BEGIN_SRC emacs-lisp
(add-hook 'project-explorer-mode-hook
          (lambda ()
            (make-variable-frame-local 'org-export-dispatch-use-expert-ui)
            (modify-frame-parameters nil '((org-export-dispatch-use-expert-ui . 
t)))))
#+END_SRC

The author of project-explorer asserts that this may be a problem with Org-mode 
or Emacs. 

Since this also appears with ibuffer-other-window, is this necessarily worth 
mentioning to the Emacs newsgroup?

Any ideas on a simpler solution than mine? 

--
Brady




reply via email to

[Prev in Thread] Current Thread [Next in Thread]