Skip to content

Instantly share code, notes, and snippets.

@sri
Created October 19, 2016 20:00
Show Gist options
  • Save sri/49e3c757a69aa111a07bec66b2c1174c to your computer and use it in GitHub Desktop.
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
(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