Frage

Is there any interface library for emacs scripts, allowing to draw various gui in emacs buffers?

As far as I know, emacs extensions interface is limited by key-bindings and dialogues in the message buffer. At the same time, you can draw anything in a buffer (artist-mode), and can react on any user action (keyboard and mouse-clicks) so it is surely possibly, to implement such library entirely in elisp.

War es hilfreich?

Lösung

There is the Emacs Widget Library. It has editable fields, buttons, menus, etc - all in text mode. For instance

(widget-create 'editable-field
                  :size 13
                  :format "Name: %v " ; Text after the field!
                  "My Name")
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top