nano
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
nano [2022/08/15 18:02] – Added tips section with ^z keybind tip peteyboy | nano [2025/02/07 13:07] (current) – Additional material contributed by peron@sdf.org papa | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== The nano editor ====== | ====== The nano editor ====== | ||
- | The 'nano' | + | The ‘nano’ editor is a [[https:// |
+ | |||
+ | ==== nano cheatsheet ==== | ||
+ | |||
+ | Nano, like ‘pico’, has Help. So if you start with the [[pico_cheat_sheet |pico cheatsheet]] and read the Help, you'll get what you need. | ||
+ | |||
+ | A great addition, especially if you connect to SDF on a color terminal, is nano's use of “syntax” files, which provide syntax highlighting for several programming languages and related filetypes, such as HTML files, shell scripts, shell resource files (like '' | ||
+ | |||
+ | ====Using GNU Nano==== | ||
+ | |||
+ | It's quite easy to use Nano to write anything you want. | ||
+ | |||
+ | To run Nano, enter in the terminal: | ||
+ | |||
+ | <code bash> | ||
+ | |||
+ | You can indicate the name and extension of the file you want to edit: | ||
+ | |||
+ | < | ||
+ | |||
+ | In the top bar you will find the version of the program, the name of the loaded file (if we have not loaded anything it will say “new buffer”). It will also inform you if the file has been modified with respect to the original loaded. | ||
+ | |||
+ | The main commands to unleash the potential of Nano are activated by using the Control key, which is abbreviated in Nano with the circumflex symbol ('' | ||
+ | |||
+ | ^Result^ Shortcut^ | ||
+ | |Cut (current line or region)| Ctrl+k | | ||
+ | |Paste |Ctrl+u | | ||
+ | |Find |Ctrl+w | | ||
+ | |Justify paragraph |Ctrl+j | | ||
+ | |Justify all |Esc, | ||
+ | |Undo |Esc, | ||
+ | |Redo |Esc, | ||
+ | |Line numbering |Esc, | ||
+ | |Save |Ctrl+o | | ||
+ | |Switch nano to background and return to the shell. Use fg to return to nano. |Ctrl+t, | ||
+ | |**Exit Nano** |Ctrl+x| | ||
+ | |||
+ | To search for a text string, use **Ctrl+w**. With **Ctrl+j** will justify a long paragraph in several short lines (although it is not used in configuration files, it is very useful in any common text). | ||
+ | |||
+ | With **Ctrl+G** or **F1** will provide Help screens with the rest of the commands. To exit Nano press Ctrl+x. | ||
+ | |||
+ | We also find the //Meta commands// (or “metas”, | ||
+ | |||
+ | For example, to add right indentation to a paragraph is shown as '' | ||
+ | |||
+ | Once you are familiar with Nano, you can get a less cluttered screen by removing its title bar with **Shift+Alt+z** and the help bar with **Shift+Alt+x**. | ||
+ | |||
+ | ===Nano Configuration=== | ||
+ | |||
+ | To configure Nano you can directly edit the '' | ||
+ | |||
+ | ==== Nano Commands ==== | ||
+ | |||
+ | ^File Handling^ | ||
+ | |Ctrl+s |Save current file | | ||
+ | |Ctrl+o |Save as a file | | ||
+ | |Ctrl+r |Insert a file into current one | | ||
+ | |Ctrl+x |Close buffer and **exit Nano** | | ||
+ | ^Editing^ | ||
+ | |Ctrl+k |Cut current line into buffer | | ||
+ | |Alt+6 |Copy current line into buffer | | ||
+ | |Ctrl+u |Paste contents of buffer | | ||
+ | |Ctrl+] |Complete current word | | ||
+ | |Alt+3 |Comment/ | ||
+ | |Alt+u |Undo last action | | ||
+ | |Alt+e |Redo last undone action| | ||
+ | ^Search and Replace^ | ||
+ | |Ctrl+f |Start forward search| | ||
+ | |Ctrl+b |Start backward seach | | ||
+ | |Alt+f |Find next occurrence forward | | ||
+ | |Alt+b |Find next occurence backweard | | ||
+ | |Alt+r |Start a replacing session | | ||
+ | ^Deletion^ | ||
+ | |Ctrl+h |Delete character before cursor | | ||
+ | |Ctrl+d |Delete character under cursor | | ||
+ | |Alt+Bksp |Delete Word to the left | | ||
+ | |Ctrl+Del |Delete word to the right | | ||
+ | |Alt+Del |Delete current line | | ||
+ | ^Information^ | ||
+ | |Ctrl+c |Report cursor position| | ||
+ | |Esc, | ||
+ | |Ctrl+g |Display help text | | ||
+ | ^Miscellaneous^ | ||
+ | |Ctrl+t |Executes an external command. | | ||
+ | |Ctrl+t, | ||
+ | |Ctrl+t, | ||
+ | |Ctrl+t, | ||
+ | |Tab | Indent marked region | | ||
+ | |Shift+Tab |Unindent marked region | | ||
+ | |Esc, | ||
+ | |Alt+v |Enter next keystroke verbatim | | ||
+ | |Esc, | ||
+ | |Esc, | ||
+ | |Esc, | ||
+ | |Ctrl+L |Refresh the schreen| | ||
- | A great addition, especially if you connect to SDF on a color terminal, is nano's use of " | ||
==== How to Activate Syntax Hightlighting ==== | ==== How to Activate Syntax Hightlighting ==== | ||
+ | |||
To activate syntax highlighting, | To activate syntax highlighting, | ||
- copy the default file '' | - copy the default file '' | ||
Line 12: | Line 106: | ||
nano ~/ | nano ~/ | ||
- in nano, search for the nanorc highlight line: | - in nano, search for the nanorc highlight line: | ||
- | - press ctl-w, then type ''# | + | - press '' |
# include "/ | # include "/ | ||
- | - delete the '#' | + | - delete the ‘''#' |
- | - use the arrow keys to go down the rest of the file, and remove more of the comment characters '#" | + | - use the arrow keys to go down the rest of the file, and remove more of the comment characters |
- < | - < | ||
# include "/ | # include "/ | ||
Line 25: | Line 119: | ||
# include "/ | # include "/ | ||
</ | </ | ||
- | - Save the file with '' | + | - Save the file with '' |
The next time you open nano on an HTML or other file (it keys off the file extension, like '' | The next time you open nano on an HTML or other file (it keys off the file extension, like '' | ||
- | ==== nano cheatsheet ==== | + | ==== Nano Tips ==== |
- | Nano, like ' | + | |
- | + | ||
- | ====Nano Tips==== | + | |
=== Old Suspend Key === | === Old Suspend Key === | ||
- | As of nano 6.4 suspend behavior was changed. Instead of '' | ||
- | |||
- | You can reset to the old way by putting this in your // | ||
- | |||
- | ## Allow nano to be suspended with '' | ||
- | bind ^Z suspend main | ||
+ | As of nano 6.4 suspend behavior was changed. Instead of '' | ||
+ | * You can reset to the old way by putting this in your // | ||
+ | ## Allow nano to be suspended with ^z the old way, not ^t^z | ||
+ | bind ^Z suspend main | ||
+ | </ | ||
nano.1660586573.txt.gz · Last modified: 2022/08/15 18:02 by peteyboy