emacs-devel
[Top][All Lists]
Advanced

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

Re: emacs frame/window withouth minibuffer/modeline?


From: Mark A. Hershberger
Subject: Re: emacs frame/window withouth minibuffer/modeline?
Date: Mon, 11 Jan 2010 22:54:37 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux)

address@hidden writes:

> I'd like to make a fullscreen image viewer in Emacs for reading scanned
> pages. I'd like only the buffer to show, no minibuffer, no modeline,
> but cant really find anything about if its possible or not.  Any hints?

epresent.el (from elpa) does this.  Looking at the code, it seems the
special sauce is make-frame:

     (make-frame '((minibuffer . nil)
                   (title . "EPresent")
                   (fullscreen . fullboth)
                   (menu-bar-lines . 0)
                   (tool-bar-lines . 0)
                   (vertical-scroll-bars . nil)
                   (left-fringe . 0)
                   (right-fringe . 0)
                   (internal-border-width . 20)
                   (cursor-type . nil)))

HTH,

Mark.



-- 
http://hexmode.com/

The only alternative to Tradition is bad tradition.
                          — Jaraslov Pelikan





reply via email to

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