Skip to content

Commit

Permalink
Update doc (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
10sr authored Sep 1, 2020
1 parent b6976b0 commit d98199c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Fuzzy Finder App Integration for Emacs
Overview
--------

The `fuzzy-finder` command opens a new window, starts a fuzzy finder
process inside of it, and then calls a function on the selected items.
The `fuzzy-finder` command starts a fuzzy finder process and calls a function
on the selected items.
By default it visits selected files.

There are a number of applications which can be used with `fuzzy-finder`
Expand Down
8 changes: 4 additions & 4 deletions fuzzy-finder.el
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

;; Fuzzy finder app integration into Emacs.

;; `fuzzy-finder' command opens a new window, starts a fuzzy finder
;; process inside of it, and then calls a function with selected items.
;; `fuzzy-finder' command starts a fuzzy finder process and calls a function
;; on the selected items.
;; By default it visits selected files.

;; There are a number of applications which can be used with `fuzzy-finder'
Expand All @@ -51,11 +51,11 @@
(declare-function company-mode "company")

(defgroup fuzzy-finder nil
"A Front-End for Fuzzy Finder Applications."
"Fuzzy finder app integration for Emacs."
:group 'convenience)

(defcustom fuzzy-finder-executable (executable-find "fzf")
"Path to the fzf executable."
"Path to the fuzzy finder executable."
:type 'string
:group 'fuzzy-finder)

Expand Down

0 comments on commit d98199c

Please sign in to comment.