diff options
author | etnt <etnt> | 2006-01-04 09:33:20 +0000 |
---|---|---|
committer | etnt <etnt> | 2006-01-04 09:33:20 +0000 |
commit | 190e6483ae66769e031c9b1ef0ca75d5fabe3e26 (patch) | |
tree | 243436edb8a10bfe8bd1fc975389fca5c4b6124d /doc/TOUR | |
parent | 663d56ca630aa255f4114db6ba26027488f70039 (diff) | |
download | ermacs-fork-190e6483ae66769e031c9b1ef0ca75d5fabe3e26.tar.gz |
Added a stop/0 function which doesn't halt the Erlang node. Right now it does a init:restart/0, but it should probably do something nicer. Also, added some info in the TOUR file.
Diffstat (limited to 'doc/TOUR')
-rw-r--r-- | doc/TOUR | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -106,6 +106,21 @@ Multiple buffers You can use "C-x C-f" to open a new file, and then "C-x b" back here as you would in emacs (but without the completions). + +The ~/.ermacs file +------------------ + +Works similar to the ~/.erlang file, i.e you can put erlang +code there to be evaluated. For example, if you want to redefine +the global keymap so that "C-x C-c" doesn't halt the Erlang node, +the add a line such as: + + edit_keymap:global_set_key("C-x C-c", {edit_lib, stop, []}). + +to your ~/.ermacs file. +(make sure that you make a newline after the dot) + + Other stuff ----------- @@ -113,3 +128,8 @@ To see what else there is, look in the keymap definition: C-x C-f ../src/edit_globalmap.erl RET +If you want to change the foreground/background colors, you +can set the COLORFGBG environment variable like this: + + export COLORFGBG="green;black" + |