How To Install elpa-find-file-in-project on Kali Linux
Introduction
In this tutorial we learn how to install elpa-find-file-in-project on Kali Linux.
What is elpa-find-file-in-project
elpa-find-file-in-project is:
This program provides a methods for quickly finding any file in a project. It defaults to GNU Find, but can also use fd-find, or its built-in Emacs Lisp method. Find-file-in-project prefers Ivy for candidate selection, but can be configured to use Ido Mode.
By default, FFIP will search for files in a local Git, Subversion, or Mercurial repository. FFIP uses TRAMP to find files in remote repositories, and claims this is “flawlessly” supported.
Features:
- Fast! Tested with projects that have 50,000+ files
- Find’s behaviour can be tweaked using ffip-find-options
- Smart. For keyword “helloWorld”, “HelloWorld.html”, “hello-world.css”, and “HelloWorld.js” are searched
- Enhances diff-mode with more convenient patch-handling, including diff creation, application, finding the file associated with a given hunk, and jumping to the section relevant to that hunk
- No configuration required. Find-file-in-project works out-of-the-box
There are three methods to install elpa-find-file-in-project 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-find-file-in-project Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install elpa-find-file-in-project using apt-get by running the following command:
sudo apt-get -y install elpa-find-file-in-projectInstall elpa-find-file-in-project Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install elpa-find-file-in-project using apt by running the following command:
sudo apt -y install elpa-find-file-in-projectInstall elpa-find-file-in-project 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 updateAfter updating apt database, We can install elpa-find-file-in-project using aptitude by running the following command:
sudo aptitude -y install elpa-find-file-in-projectHow To Uninstall elpa-find-file-in-project on Kali Linux
To uninstall only the elpa-find-file-in-project package we can use the following command:
sudo apt-get remove elpa-find-file-in-projectUninstall elpa-find-file-in-project And Its Dependencies
To uninstall elpa-find-file-in-project and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove elpa-find-file-in-projectRemove elpa-find-file-in-project Configurations and Data
To remove elpa-find-file-in-project configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge elpa-find-file-in-projectRemove elpa-find-file-in-project configuration, data, and all of its dependencies
We can use the following command to remove elpa-find-file-in-project configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge elpa-find-file-in-projectDependencies
elpa-find-file-in-project have the following dependencies:
References
Summary
In this tutorial we learn how to install elpa-find-file-in-project package on Kali Linux using different package management tools: apt, apt-get and aptitude.