mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 13:16:44 +02:00
16 lines
440 B
Plaintext
16 lines
440 B
Plaintext
;
|
|
; Written by RenJMR
|
|
;
|
|
|
|
(defun ejmr-search-cheat-sh ()
|
|
"Search `http://cheat.sh/' for help on commands and code."
|
|
(interactive)
|
|
(ivy-read "Command or Topic: "
|
|
(process-lines "curl" "--silent" "http://cheat.sh/:list?T&q")
|
|
:require-match t
|
|
:sort t
|
|
:history 'ejmr-search-cheat-sh
|
|
:action (lambda (input)
|
|
(browse-url (concat "http://cheat.sh/" input "?T&q")))
|
|
:caller 'ejmr-search-cheat-sh))
|