Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions HelpSource/Classes/Emacs.schelp
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
TITLE:: Emacs
summary:: a little frontend for the legendary editor
categories:: Frontends>Emacs
related:: Classes/EmacsBuffer, Reference/EmacsEditor

DESCRIPTION::
A little frontend for the legendary editor.

CLASSMETHODS::

METHOD:: evalLispExpression
Evaulates a emacs lisp code.

code::
Emacs.evalLispExpression(['sclang-switch-to-workspace'])
::

METHOD:: message
Display a formatted string with arguments in the Emacs's minubuffer.The % character in the format string is replaced by a string representation of an argument. To print a % character use \\% .

code::
Emacs.message("Just a text")
a = 433
Emacs.message("Just a number: %d", a)
::