How To Install geany-plugins-vimode on CentOS 7
Introduction
In this tutorial we learn how to install geany-plugins-vimode
on CentOS 7.
What is geany-plugins-vimode
Vimode is a Vim-mode plugin for Geany written by a guy who does not use Vim. Expect problems unexpected by a Vim user and, please, report them. Despite the limited Vim knowledge of the author, the plugin tries to be a reasonably complete Vim mode implementation featuring * normal mode, insert/replace mode, visual mode, line visual mode * repeated commands (e.g. 10dd - delete 10 lines) * “motion” commands (e.g. d10l - delete 10 characters to the right) * “text object” commands (e.g. di( - delete inner contents of parentheses) * visual mode commands (e.g. ~ to swap case of the selected text) * basic ex mode commands like * most basic navigation, selection and text manipulation commands * command repetition using “.” and repeated insert
We can use yum
or dnf
to install geany-plugins-vimode
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install geany-plugins-vimode.
Install geany-plugins-vimode on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install geany-plugins-vimode
using yum
by running the following command:
sudo yum -y install geany-plugins-vimode
Install geany-plugins-vimode on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install geany-plugins-vimode
using dnf
by running the following command:
sudo dnf -y install geany-plugins-vimode
How To Uninstall geany-plugins-vimode on CentOS 7
To uninstall only the geany-plugins-vimode
package we can use the following command:
sudo dnf remove geany-plugins-vimode
References
Summary
In this tutorial we learn how to install geany-plugins-vimode
on CentOS 7 using yum
and dnf
.