;;; ripgrep.el --- Front-end for ripgrep, a command line search tool
;; Copyright (C) 2016 Nicolas Lamirault <nicolas.lamirault@gmail.com>
;;
;; Author: Nicolas Lamirault <nicolas.lamirault@gmail.com>
;; Version: 0.4.0
;; Package-Version: 20220520.1410
;; Package-Commit: 872e250e8f93b8bb0a8a1de8bde17fd9bd116e31
;; Keywords : ripgrep ack pt ag sift grep search
;; Homepage: https://github.com/nlamirault/ripgrep.el
;;; Commentary:
;; Emacs front-end for ripgrep, a command line search tool
;; Installation:
;; ripgrep.el is available on the two major community maintained repositories
;; Melpa stable (https://stable.melpa.org), and Melpa (https://melpa.org)
;;
;; (add-to-list 'package-archives
;; '("melpa" . "https://melpa.org/packages/") t)
;;
;; M-x package-install ripgrep
;;; License:
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
;; as published by the Free Software Foundation; either version 2
;; of the License, or (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
;; 02110-1301, USA.
;;; Commentary:
;; Usage :
;; M-x ripgrep-regexp
;;; Code:
;; optional
;; Customization
;; --------------------------
;; Faces
;; --------------------------
;; Mode
;; --------------------------
;; from grep-mode-font-lock-keywords
;; Taken from grep-filter, just changed the color regex.
;; API
;; --------------------------
;;;###autoload
;;; ripgrep.el ends here