Lesson 5: Managing Files and Directories Flashcards
Text Editor
An application that enables you to view, create, or modify the contents of text files
Vim
The default text editor in most Linux Distributions
extended version of vi
favored by system administrators and software engineers
Vim command
Emacs
A flexible, powerful, and popular text editor used in Linux and Unix
gVim
The graphical version of the Vim editor
gedit
A simple yet powerful GUI-based text editor used in the GNOME desktop environment
GNU nano
A small, user-friendly text editor
Vim Modes
Insert : insert text by typing
Execute : Execute commands within the editor
Command : Perform different editing actions using single keystrokes
Visual : Highlight or select text for copying, deleting, and so on
Execute Mode Commands
:w - saves a file with a file name
:q - Quits when no changes have been made after the last save
:q! - Quits, ignoring the changes made
:qa - Quits the multiple files
:wq - saves the current files and quits
:e! - Reverts to the last saved format without closing the file
Motions
single-key shortcuts that are used to navigate through files in command mode