diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2018-02-26 13:53:37 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2018-02-26 13:53:37 +0100 |
commit | 9743f48de7325bd95a42e1a27acbf6635f8d086b (patch) | |
tree | 364b474f9019fa2899befe6d3260f8b8e1ed64f6 /doc/misc/ede.texi | |
parent | ce557a924a299650b5e0c93ba276f1ec651f7941 (diff) | |
download | emacs-9743f48de7325bd95a42e1a27acbf6635f8d086b.tar.gz emacs-9743f48de7325bd95a42e1a27acbf6635f8d086b.tar.bz2 emacs-9743f48de7325bd95a42e1a27acbf6635f8d086b.zip |
Mark keys consistently in manuals
* doc/emacs/killing.texi:
* doc/lispintro/emacs-lisp-intro.texi:
* doc/misc/calc.texi:
* doc/misc/cc-mode.texi:
* doc/misc/dired-x.texi:
* doc/misc/ede.texi:
* doc/misc/edt.texi:
* doc/misc/efaq.texi:
* doc/misc/erc.texi:
* doc/misc/eshell.texi:
* doc/misc/gnus-faq.texi:
* doc/misc/gnus-news.texi:
* doc/misc/idlwave.texi:
* doc/misc/ido.texi:
* doc/misc/mairix-el.texi:
* doc/misc/message.texi:
* doc/misc/mh-e.texi:
* doc/misc/newsticker.texi:
* doc/misc/org.texi:
* doc/misc/pcl-cvs.texi:
* doc/misc/ses.texi:
* doc/misc/sieve.texi:
* doc/misc/smtpmail.texi:
* doc/misc/speedbar.texi:
* doc/misc/srecode.texi:
* doc/misc/vhdl-mode.texi:
* doc/misc/vip.texi:
* doc/misc/viper.texi: Mark keys consistently.
Diffstat (limited to 'doc/misc/ede.texi')
-rw-r--r-- | doc/misc/ede.texi | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi index fbe3ac6a10a..7feb5166fc8 100644 --- a/doc/misc/ede.texi +++ b/doc/misc/ede.texi @@ -160,8 +160,8 @@ First, lets create a directory for our project. For this example, we'll start with something in @file{/tmp}. @example -C-x C-f /tmp/myproject/README RET -M-x make-directory RET RET +C-x C-f /tmp/myproject/README @key{RET} +M-x make-directory @key{RET} @key{RET} @end example Now put some plain text in your README file to start. @@ -169,7 +169,7 @@ Now put some plain text in your README file to start. Now, lets create the project: @example -M-x ede-new RET Automake RET myproject RET +M-x ede-new @key{RET} Automake @key{RET} myproject @key{RET} @end example @@ -191,8 +191,8 @@ We'll make a more complex project, so use dired to create some more directories using the @kbd{+} key, and typing in new directories: @example -+ include RET -+ src RET ++ include @key{RET} ++ src @key{RET} @end example Now I'll short-cut in this tutorial. Create the following files: @@ -252,13 +252,13 @@ now create those projects. With @file{main.cpp} as your current buffer, type: @example -M-x ede-new RET Automake RET src RET +M-x ede-new @key{RET} Automake @key{RET} src @key{RET} @end example and in @file{myproj.hh} as your current buffer, type: @example -M-x ede-new RET Automake RET include RET +M-x ede-new @key{RET} Automake @key{RET} include @key{RET} @end example These steps effectively only create the Project.ede file in which you @@ -272,7 +272,7 @@ Projects. You can create targets either from a buffer, or from a Note: If for some reason a directory list buffer, or file does not have the @samp{Project} menu item, or if @ede{} keybindings don't work, just -use @kbd{M-x revert-buffer RET} to force a refresh. Sometimes +use @kbd{M-x revert-buffer @key{RET}} to force a refresh. Sometimes creating a new project doesn't restart buffers correctly. Lets start with the header file. In @file{include/myproj.hh}, you @@ -280,7 +280,7 @@ could use the menu, but we will now start using the @ede{} command prefix which is @kbd{C-c .}. @example -C-c . t includes RET miscellaneous RET y +C-c . t includes @key{RET} miscellaneous @key{RET} y @end example @@ -292,7 +292,7 @@ Next, visit the @file{src} directory using dired. There should be a @samp{Project} menu. You can create a new target with @example -. t myprogram RET program RET +. t myprogram @key{RET} program @key{RET} @end example Note that @kbd{. t} is a command for creating a target. This command @@ -304,7 +304,7 @@ Next, place the cursor on @file{main.cpp}, and use @kbd{. a} to add that file to your target. @example -. a myprogram RET +. a myprogram @key{RET} @end example Note that these prompts often have completion, so you can just press @@ -316,8 +316,8 @@ all in your dired buffer, and add them all at the same time. Next, do the same for the library by placing the cursor on @file{mylib.cpp}. @example -. t mylib RET sharedobject RET -. a mylib RET +. t mylib @key{RET} sharedobject @key{RET} +. a mylib @key{RET} @end example @section Step 5: Compile, and fail @@ -350,7 +350,7 @@ To fix the failed compile, we need to add Visit @file{main.cpp}. @example -M-x customize-project RET +M-x customize-project @key{RET} @end example Select the @samp{[Settings]} subgroup of options. Under @@ -407,7 +407,7 @@ project. This is because variables such as the include path are treated globally, whereas dependencies for a target are target specific. @example -M-x customize-target RET +M-x customize-target @key{RET} @end example On the first page, you will see an Ldlibs-local section. Add mylib to @@ -437,7 +437,7 @@ C-c . C You can run your program directly from @ede{}. @example -C-c . R RET RET +C-c . R @key{RET} @key{RET} @end example If your program takes command line arguments, you can type them in |