Created
October 19, 2016 20:00
-
-
Save sri/49e3c757a69aa111a07bec66b2c1174c to your computer and use it in GitHub Desktop.
google each line in dired -- useful for exploring other people's elpa packages
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
(defun my-google-it () | |
(interactive) | |
(let ((line (buffer-substring-no-properties (point-at-bol) | |
(point-at-eol)))) | |
(setq line (car (last (split-string line)))) | |
(setq line | |
(replace-regexp-in-string "[-.0-9]" " " line)) | |
(setq line (string-trim line)) | |
(setq line (concat "emacs " line)) | |
(setq line (replace-regexp-in-string " " "+" line)) | |
(shell-command | |
(format "open https://www.google.com/#q=%s" line)))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment