README: remove all language identifiers from code blocks

This commit is contained in:
Yvan Volochine 2013-07-01 17:13:24 +02:00
parent ab9cbc2866
commit fe43d2f24a

View file

@ -23,12 +23,12 @@ SuperCollider files are put in
The only thing you need to do is loading the sclang interface in your `~/.emacs`: The only thing you need to do is loading the sclang interface in your `~/.emacs`:
```lisp ```
(require 'sclang) (require 'sclang)
``` ```
For the HTML help system to fully function also add For the HTML help system to fully function also add
```lisp ```
(require 'w3m) (require 'w3m)
``` ```
@ -40,13 +40,13 @@ Put all `*.el` files in emacs' load-path. e.g. if you put them in
`~/emacs/`, add the following lines to `~/.emacs` (or whatever your init `~/emacs/`, add the following lines to `~/.emacs` (or whatever your init
file is called): file is called):
```lisp ```
(add-to-list 'load-path "~/emacs") (add-to-list 'load-path "~/emacs")
(require 'sclang) (require 'sclang)
``` ```
for the HTML help system to fully function also add for the HTML help system to fully function also add
```lisp ```
(require 'w3m) (require 'w3m)
``` ```
@ -54,7 +54,7 @@ now put all `*.sc` files in sclang's library path, e.g. if you put them
in a non-standard location, such as `~/SuperCollider/Emacs`, add the in a non-standard location, such as `~/SuperCollider/Emacs`, add the
following to `~/.config/SuperCollider/sclang.conf.yaml`: following to `~/.config/SuperCollider/sclang.conf.yaml`:
```yaml ```
includePaths: includePaths:
[~/SuperCollider/Emacs] [~/SuperCollider/Emacs]
``` ```
@ -68,7 +68,7 @@ Usage
In order to automatically start sclang when invoking emacs, use the following command line: In order to automatically start sclang when invoking emacs, use the following command line:
```bash ```
$> emacs -sclang $> emacs -sclang
``` ```
@ -95,7 +95,7 @@ and a window with key bindings in sclang-mode will pop up.
To enable moving around in the help file with arrow keys add the following To enable moving around in the help file with arrow keys add the following
in your `~/.emacs`: in your `~/.emacs`:
```lisp ```
(eval-after-load "w3m" (eval-after-load "w3m"
'(progn '(progn
(define-key w3m-mode-map [left] 'backward-char) (define-key w3m-mode-map [left] 'backward-char)