Last active
May 7, 2021 13:39
-
-
Save mmontone/c9c5d588019be79100d5fed793817c51 to your computer and use it in GitHub Desktop.
Emacs/SLIME frontend to Quicksearch, a search-engine-interface for Common Lisp.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Copyright (C) 2021 Mariano Montone | |
;; 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 3 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, see <http://www.gnu.org/licenses/>. | |
;; Install: | |
;; Emacs: put this file in your load-path and add (require 'quicksearch) to ~/.emacs init file. | |
;; Common Lisp: add (require :quicksearch) to your compiler init file (i.e. .sbclrc). | |
;; NOTE: | |
;; Current quicksearch is buggy for some results. | |
;; I recommend you apply this patch: https://github.com/tkych/quicksearch/issues/10 | |
;; Use: | |
;; M-x quicksearch | |
;; Customize max results with: M-x customize-variable RET quicksearch-max-results RET | |
(require 'slime) | |
(defcustom quicksearch-max-results 500 | |
"Maximum number of results to be returned by Quicksearch.") | |
(defun quicksearch--follow-link (button) | |
"Follow the URL specified by BUTTON." | |
(browse-url (button-get button 'url))) | |
(defun quicksearch--button (text type &rest properties) | |
;; `make-text-button' mutates our string to add properties. Copy | |
;; TEXT to prevent mutating our arguments, and to support 'pure' | |
;; strings, which are read-only. | |
(setq text (substring-no-properties text)) | |
(apply #'make-text-button | |
text nil | |
:type type | |
properties)) | |
(define-button-type 'quicksearch-link-button | |
'action #'quicksearch--follow-link | |
'follow-link t | |
'help-echo "Follow this link") | |
(defun quicksearch--propertize-links (string) | |
"Convert URL links in strings to buttons." | |
(replace-regexp-in-string | |
(rx (group (or string-start space "<")) | |
(group "http" (? "s") "://" (+? (not (any space)))) | |
(group (? (any "." ">" ")")) | |
(or space string-end ">"))) | |
(lambda (match) | |
(let ((space-before (match-string 1 match)) | |
(url (match-string 2 match)) | |
(after (match-string 3 match))) | |
(concat | |
space-before | |
(quicksearch--button | |
url | |
'quicksearch-link-button | |
'url url) | |
after))) | |
string)) | |
(defun quicksearch (what) | |
(interactive "sQuicksearch: ") | |
(let* ((results | |
(slime-eval `(cl:with-output-to-string (cl:*standard-output*) | |
(quicksearch:quicksearch ,what :?url t :?description t | |
:?cut-off ,quicksearch-max-results)))) | |
(buffer-name (format "*quicksearch: %s*" what)) | |
(buffer (get-buffer-create buffer-name))) | |
(with-current-buffer buffer | |
(insert (quicksearch--propertize-links results)) | |
(local-set-key "q" 'kill-buffer) | |
(setq buffer-read-only t) | |
(buffer-disable-undo) | |
(goto-char 0) | |
(pop-to-buffer buffer)))) | |
(provide 'quicksearch) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment