X Tutup
Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 703 Bytes

File metadata and controls

29 lines (20 loc) · 703 Bytes
title Nano cheat sheet
group software-editors
author @wasabifan

{% include /util/screenshot.html source="/images/misc-screenshots/nano.png" caption="The nano text editor" width="100%" %}

Nano is a text editor which runs as a textual application in a terminal window. It comes with ev3dev and can be used from a remote SSH session.

Quick-start

Open the editor by typing nano <file name> into the terminal. You can navigate an open file using the arrow keys.

Useful keystrokes

Ctrl+O : Save current file ("Write out")

Ctrl+X : Exit the editor

Ctrl+Y : Up one page

Ctrl+V : Down one page

X Tutup