Editing text at the command line with micro
Using Tabs
A nifty feature of micro is the ability to have multiple files open at the same time. If you have one file open in micro, you can open another one in a tab by pressing Ctrl+E and then typing tab
followed by the path to that file.
The idea is more or less like the tabs you find in a graphical editor. The tabs that you have open are listed along the top of the editor, as shown in Figure 3.

You can switch between tabs by pressing Ctrl+E and then typing tabswitch
followed by the number of the tab. The numbering of tabs starts from the left: The tab furthest to the left is 1, and the numbers increment as you move right. Or, you can click on a tab with your mouse. I prefer doing the latter.
Configuration Options
One of micro's selling points is that you can configure it to make the editor work the way that you want it to. The quickest way to do that is to open the file settings.json
found in the .config/micro
folder in your /home
directory.
That file stores configuration information in a format called JavaScript Object Notation (JSON). If you're not familiar with it, JSON is a data format that both people and computers can easily read. Don't let that intimidate you. JSON uses what's called "attribute/value" pairs to store information. In micro's settings.json
file, the attribute is a configuration option and the value is often either true
or false
. Sometimes, it's a number or something else specific to an option.
Micro has 60 configuration options. Those include options to automatically save files, to automatically match braces when writing in a markup or programming language, to display line numbers or a scrollbar, or to use tabs instead of spaces.
Figure 4 shows what my (rather basic) settings file looks like.
You can find out more about the options by opening micro's command bar and typing help options
.
Adding Plugins
Micro lives up to its billing as being extensible thanks to its support for plugins. At the time of writing, there are 27 plugins [3] that you can add to the editor. Those plugins run the gamut of tasks like correcting commonly misspelled words, adding bookmarks to a file, pretty-printing code, and adding support for the Go programming language (which is the language used to develop micro).
Install a plugin by running this command in a terminal window:
micro -plugin install <name of plugin>
Let's say you want to install the aspell plugin, which checks spelling as you type. To do that, run this command:
micro -plugin install aspell
Figure 5 shows the aspell plugin in action.
Some plugins, like aspell, run automatically. Others you need to launch yourself. To do that, open micro's command bar, type the name of the plugin to run, and press Enter.
Admittedly, 27 isn't all that many plugins. There's a chance you might not find one that suits your needs. However, if you have a few chops with the Lua programming language, you can write your own plugins. There's information about that in micro's code repository on GitHub [4].
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
SparkyLinux 6.6 Now Available for Installation
The Debian-based SparkyLinux has a new point release that retools the live USB desktop creator and other changes that give it shiny new-ness.
-
SparkyLinux 6.6 Now Available for Installation
The Debian-based SparkyLinux has a new point release that retools the live USB desktop creator and other changes that give it shiny new-ness.
-
Escuelas Linux 8.0 Now Available
Just in time for its 25th anniversary, the developers of Escuelas Linux have released the latest version.
-
LibreOffice 7.5 Loaded with New Features and Improvements
The favorite office suite of the Linux community has a new release that includes some visual refreshing and new features across all modules.
-
The Next Major Release of Elementary OS Has Arrived
It's been over a year since the developers of elementary OS released version 6.1 (Jólnir) but they've finally made their latest release (Horus) available with a renewed focus on the user.
-
KDE Plasma 5.27 Beta Is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.