;;; google-this.el --- Google item under point -*- lexical-binding: t; -*- ;;; Commentary: A set of emacs functions and bindings to google under point. ;;; Code: https://github.com/Malabarba/emacs-google-this (use-package google-this :defer :diminish google-this-mode :init (user/bind-key-global :util :google 'google-search) (user/bind-key-global :util :google-at-point 'google-this) (user/bind-key-global :util :google-selection 'google-region)) (provide 'utilities/google-this) ;;; google-this.el ends here