How To Install elpa-ido-completing-read+ on Kali Linux

In this tutorial we learn how to install elpa-ido-completing-read+ on Kali Linux. elpa-ido-completing-read+ is completing-read-function using ido

Introduction

In this tutorial we learn how to install elpa-ido-completing-read+ on Kali Linux.

What is elpa-ido-completing-read+

elpa-ido-completing-read+ is:

This package implements the ido-completing-read+' function, which is a wrapper for ido-completing-read’. Importantly, it detects edge cases that ordinary ido cannot handle and either adjusts them so ido can handle them, or else simply falls back to Emacs’ standard completion instead.

There are three methods to install elpa-ido-completing-read+ on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install elpa-ido-completing-read+ Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install elpa-ido-completing-read+ using apt-get by running the following command:

sudo apt-get -y install elpa-ido-completing-read+

Install elpa-ido-completing-read+ Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install elpa-ido-completing-read+ using apt by running the following command:

sudo apt -y install elpa-ido-completing-read+

Install elpa-ido-completing-read+ Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install elpa-ido-completing-read+ using aptitude by running the following command:

sudo aptitude -y install elpa-ido-completing-read+

How To Uninstall elpa-ido-completing-read+ on Kali Linux

To uninstall only the elpa-ido-completing-read+ package we can use the following command:

sudo apt-get remove elpa-ido-completing-read+

Uninstall elpa-ido-completing-read+ And Its Dependencies

To uninstall elpa-ido-completing-read+ and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove elpa-ido-completing-read+

Remove elpa-ido-completing-read+ Configurations and Data

To remove elpa-ido-completing-read+ configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge elpa-ido-completing-read+

Remove elpa-ido-completing-read+ configuration, data, and all of its dependencies

We can use the following command to remove elpa-ido-completing-read+ configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge elpa-ido-completing-read+

Dependencies

elpa-ido-completing-read+ have the following dependencies:

References

Summary

In this tutorial we learn how to install elpa-ido-completing-read+ package on Kali Linux using different package management tools: apt, apt-get and aptitude.