1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
From: Nicholas D Steeves <nsteeves@gmail.com>
Date: Fri, 27 Aug 2021 22:29:47 -0400
Subject: simplify installation README
Forwarded: not-needed
---
README.org | 25 ++-----------------------
1 file changed, 2 insertions(+), 23 deletions(-)
diff --git a/README.org b/README.org
index 7f73025..a3bb5d8 100644
--- a/README.org
+++ b/README.org
@@ -20,21 +20,9 @@ Diff/patch files. Target files could be under any Version Control Software (VCS)
*Screenshot:*
[[ffip-screenshot-nq8.png]]
-* Try it
-Run =make runemacs= in this project's root directory. The demo works out of box.
-* Install
-Place [[https://raw.githubusercontent.com/redguardtoo/find-file-in-project/master/find-file-in-project.el][find-file-in-project.el]] under [[https://www.emacswiki.org/emacs/LoadPath][Load Path]]. Then add =(require 'find-file-in-project)= to your configuration.
-
-It is also possible to use [[http://stable.melpa.org/#/find-file-in-project][melpa]]; however be aware that as of the time of this writing installation using =package.el= is [[https://glyph.twistedmatrix.com/2015/11/editor-malware.html][not recommended]] due to flaws in Emacs's TLS implementation.
-
-Since =v3.7=, =Emacs 24.3= is required.
-
-Since =v5.7.5=, =Emacs 24.4= is required.
-
-Since =v6=, =Emacs 25.1= is required.
-
-Users of Debian ≥10 and derivatives can install this program with the following command:
+* Installation
=sudo apt install elpa-find-file-in-project=
+
* Setup
Since v6, ffip gives you freedom to choose your favorite completion framework.
@@ -54,16 +42,7 @@ Ivy setup,
#+begin_src elisp
(ivy-mode 1)
#+end_src
-** Windows
-Windows setup is as easy as *installing [[http://cygwin.com][Cygwin]] or [[https://msys2.github.io/][MYSYS2]] at default directory of any driver*. =GNU Find= executable is detected automatically.
-
-You can also manually specify the executable path,
-#+begin_src elisp
-(when (eq system-type 'windows-nt) (setq ffip-find-executable "c:\\\\cygwin64\\\\bin\\\\find"))
-#+end_src
-** Linux and OS X
-NO setup needed.
* Usage
Project root is *automatically* detected if Git/Mercurial/Subversion is used.
|