freedomboneeee/doc/EN/app_emacs.org

41 lines
1.5 KiB
Org Mode
Raw Permalink Normal View History

2016-11-14 16:15:20 +01:00
#+TITLE:
#+AUTHOR: Bob Mottram
#+EMAIL: bob@freedombone.net
#+KEYWORDS: freedombone, emacs
#+DESCRIPTION: How to use Emacs
#+OPTIONS: ^:nil toc:nil
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
2018-04-12 14:01:49 +02:00
#+attr_html: :width 80% :height 10% :align center
2016-11-14 16:15:20 +01:00
[[file:images/logo.png]]
2018-04-12 14:01:49 +02:00
* Emacs
2016-11-14 16:15:20 +01:00
Emacs is a text editor popular with software developers or anyone who needs to take notes at high speed or be able to customise their editing environment to a high degree. When installed on Freedombone it can be used together the Mutt email client to edit new emails or if you need to manually edit configuration files.
* Installation
Log into your system with:
#+begin_src bash
ssh myusername@mydomain -p 2222
#+end_src
2018-06-16 22:53:50 +02:00
Using cursor keys and Enter key select *Administrator controls* and type in your password.
2016-11-14 16:15:20 +01:00
Select *Add/Remove Apps*. If Vim is selected then you might want to unselect and uninstall it first, then select *emacs*.
* Common key combinations
For anyone new to Emacs some common keys are:
| CTRL-x CTRL-s | Save |
| CTRL-x CTRL-c | Exit |
| CTRL-l | Go to a line number |
| CTRL-x CTRL-f | Open a file |
| SHIFT-ALT-< | Go to the top of the file |
| SHIFT-ALT-> | Go to the end of the file |
| SHIFT cursors | Select text |
| CTRL-x CTRL-h | Highlight all text |
| ALT-w | Copy selected text |
| CTRL-y | Paste selected text |
| ESC-ESC-ESC | Undo current selection |