nano
📝 Nano Text Editor - Complete Guide for Termux (2025) Table of Contents About Nano Basic Usage Essential Commands File Operations Editing Commands Search and Replace Advanced Features Configuration Practical Examples Tips and Tricks About Nano Nano is a simple, user-friendly command-line text editor that’s perfect for beginners and experienced users alike. It’s designed to be easy to use with on-screen command hints. Official Website: https://www.nano-editor.org/ Official Repo: https://git.savannah.gnu.org/cgit/nano.git Version: 8.x (latest as of 2025) License: GNU GPL v3+ Key Features Easy to learn with visible command shortcuts Syntax highlighting for multiple languages Multi-buffer support (edit multiple files) Search and replace with regex support Auto-indentation Undo/Redo functionality Mouse support in compatible terminals Basic Usage Opening Files # Open nano (blank file) nano # Open/create a specific file nano filename.txt # Open file at specific line number nano +15 filename.txt # Open file at specific line and column nano +15,7 filename.txt # Open file as read-only nano -v filename.txt # Open multiple files nano file1.txt file2.txt file3.txt Essential Commands Note: In nano, ^ means Ctrl key, and M- means Alt key (or Esc then the key) ...