Vim vs Nano: What Should You Choose?

Vim and Nano are two popular terminal text editors. How are they different? What's best for you? Let us find out.
Warp Terminal

We need to utilize the text editor to take notes, write a program, or edit a system configuration file to get something done.

Your Linux distribution already comes pre-installed with text editors, no matter the requirements.

You will most likely notice some of the best modern text editors like Gedit, Geany, Kate, etc., pre-installed in your Linux distribution. However, these are all GUI-based programs.

What if you want to access a text editor through the terminal? You should also find it built-in to your Linux distribution.

vim vs nano

Vim and Nano are some of the most popular CLI text editors.

But, what makes them so popular? What should you pick as your text editor? Let me highlight the differences between Vim and nano to help you decide.

1. Introducing the Terminal-based Editors

nano and Vim offer most of the essential features. While nano comes built-in on most Linux distros, you will have to install Vim manually.

To compare the two, let me give you a brief introduction to both.

Vim

Vim Screenshot

Vim is a bettered version of the “Vi” text editor, developed in 1991. Hence, Vim stands for “Vi improved”

Vi was a terminal-based text editor initially developed for the Unix operating system in 1976. So, Vim is an enhanced version of it, with modern capabilities.

It is also referred to as a “programmer’s text editor”, considering it features various features that can help edit program files. While it offers some advanced functionalities, you can also edit plain text files.

GNU nano

Nano Editor Screenshot

GNU nano (or we call it “nano” throughout the article) is a simple terminal-based text editor inspired by Pico. This Unix-based text editor was a part of Pine email suite developed by The University of Washington in 1989.

Pico text editor did not feature a GPL (license), which made it tough to include in Linux distros.

So, nano was developed as a free replacement to it. The nano editor was initially known as “tip” and then renamed right before Richard Stallman declared it an official GNU program.

The striking highlight of this editor is its ease of use and minimal learning curve. You do not necessarily need to be a programmer to use nano.

2. Feature Differences

Here are the key feature differences between Vim and nano.

Key Features of Vim

  • Multi-level Undo
  • Syntax highlighting
  • Command line editing
  • Filename completion
  • Multi-windows and buffers
  • Folds
  • Sessions
  • Macro

Key Features of Nano

  • Opening multiple files
  • Scrolling per line
  • Undo/Redo
  • Syntax coloring
  • Line Numbering

Note that, Vim, in general, offers more advanced functionalities. However, both of them offer the essentials for editing system configuration files, programming, and text editing.

3. Using the Text Editors

Opening a file in Vim or nano is as easy as typing the name of the editor you want to use, followed by the file’s path. The path can be either absolute or a relative path to the file:

vim Documents/text.txt
nano Documents/text.txt

But there’s much more than just accessing or opening a file using the text editor, right?

If you want a quick list of things, here are some comparison points based on my usage:

Vim Nano
Mode-driven editor Easy to use (frequently usable functions and their key combos are listed at the bottom)
Huge learning curve in the beginning Non-existent learning curve
Session recovery Meant for quick edits
Syntax highlighting/coloring
Offers advanced capabilities

The primary difference between nano and Vim is that the intended audiences are very different.

Vim

Vim is a mode-driven editor. That means alphabetical, numeric and punctuation keys all have to do a unique thing when pressed—instead of typing out a character on screen.

The modes include:

  • Normal mode
  • Visual mode
  • Insert mode
  • Command-line command
  • Command-line editing

By default, when you launch Vim, it opens in the Normal mode. Each key has its unique function and does not immediately start typing the characters pressed.

Even with all the modes, you can configure Vim as a writing tool if you want.

To know more about such exciting things, you can refer to our resource on basic Vim commands and Vim tips and tricks article as well.

01 vim interface
Terminal screen when you launch Vim (without arguments)

In the normal mode, pressing specific keys will move your cursor.

For example, if you press ‘l’ (lowercase L), it will move the cursor to one character right, pressing ‘h’ key will move the cursor one character to the left.

If you want to move the cursor one line down, you press the ‘j’ key and, to move it back up one line, you should press the ‘k’ key.

Making l+k+j+h the navigational keys in the normal mode. While you can use the arrow keys to move around, it’s just more efficient this way.

These are the basic navigational keys in Vim.

The next most commonly used keys are ‘w’, ‘b’, ‘e’.

  • Pressing the ‘w‘ key moves the cursor to the next word. If it already at the start of a word, it moves to the start of the next word.
  • Pressing the ‘b‘ key moves the cursor to the beginning of the word on the left.
  • And, the ‘e’ key moves the cursor to the end of the word on the right.

You can even mix numbers (as prefixes) with these keys. For instance, pressing ‘6w’ will move the cursor six words forward.

If you want to get into a mode, you will have to press key combinations like:

  • i for insert mode
  • CTRL+C for going back to the normal mode
  • :wq for writing to the file and closing the window

Ultimately, we have listed multiple ways to exit Vim, if you’re curious.

It’s just the tip of the iceberg. To learn more about Vim, you can use the vimtutor command that gives you information on most basic commands to delete, edit, save a file, etc.

vimtutor

GNU nano

Nano has a basic interface for interaction that gives you critical information at the bottom of the window.

To get a head start, you can refer to our nano editor guide.

03 nano interface
Terminal screen when you launch nano (without arguments)

You do not need to refer to the man page or any documentation to perform the basic actions. This is why nano is considered user-friendly, compared to Vim.

That being said, a few terms used in nano are still “old terminologies”—an example being the “Write Out”, “Where Is” phrases instead of “Save” and “Find” respectively.

But, that’s not a big deal.

While it is easy to get used to, it isn’t entirely the same as using Notepad or Gedit (GUI programs).

For example, the key combination to perform the cut operation is usually “Ctrl + X” in most modern-day editors but in nano, it is “Ctrl + K”.

The “^” symbol is used to denote the use of the Ctrl key as a modifier key and used with the combination with the key(s) next to it.

You also find key combinations like Ctrl + F (to move the cursor forward), Ctrl + B (navigate backward). Some shortcuts include:

  • Ctrl + X to exit
  • Ctrl + O to write (or save as)
  • Alt + U to undo last action
  • Ctrl + ← one word backward
  • Ctrl + → one word forward

You can take a look at GNU Nano’s official cheat sheet to learn more shortcuts.

Overall, nano is a more beginner-friendly editor that simply gets out of your way when all you want to do is edit a file once in a while.

How to Use Nano Text Editor in Linux [With Cheat Sheet]
Though Nano is less complicated to use than Vim and Emacs, it doesn’t mean Nano cannot be overwhelming. Learn how to use the Nano text editor.

4. The learning curve

Considering all the information above, you must have realized that Vim is distinct from the traditional text editor that you’re used to.

That is true, which is why Vim can seem tough in the initial stage of learning.

However, for power users, advanced abilities like using macros, auto-completion, and others matter, and can save time.

So, if you are a programmer, or happen to edit numerous files every now often, Vim’s learning curve can be fruitful.

On the other side, nano offers a minimal learning curve, and can feel more familiar to GUI-based text editors like Gedit or Notepad.

What’s Best for You? Vim vs Nano

Vim and nano are both capable terminal-based text editors. But they differ drastically when it comes to how you want to interact with and use said editor.

Vim is flexible and can adapt to a variety of workflows, assuming that you get used to how it works.

In contrast, nano is simple to work with and can help you edit anything you want.

If you’re still not sure, I recommend starting using nano first. And, if you think that you need to get things done faster, and want more features, switch to Vim.

Frequently Asked Questions

Moving forward, let me address a few questions that will help you get a head start:

Is Vim better than nano?

Technically, yes. But, if you do not require all of its features offered, it could feel overwhelming to use.

Do programmers use Vim?

System administrators and programmers love Vim for its advanced capabilities. So, yes, they tend to use it.

Is nano more popular?

Arguably yes. Nano is a terminal-based editor used by most users. Furthermore, it comes built-in with most Linux distributions.

Hence, it is generally popular among users, while Vim remains an editor for a specific group of people.

About the author
Pratham Patel

Pratham Patel

You will find me tinkering with software until my system crashes. And then I keep on writing about my findings.

It's FOSS

Making You a Better Linux User

It's FOSS

Great! You’ve successfully signed up.

Welcome back! You've successfully signed in.

You've successfully subscribed to It's FOSS.

Success! Check your email for magic link to sign-in.

Success! Your billing info has been updated.

Your billing was not updated.