All Projects → hrs → Engine Mode

hrs / Engine Mode

Licence: gpl-3.0
Minor mode for defining and querying search engines through Emacs.

Projects that are alternatives of or similar to Engine Mode

Memacs
What did I do on February 14th 2007? Visualize your (digital) life in Org-mode
Stars: ✭ 711 (+216%)
Mutual labels:  search, emacs
Deft
Deft for Emacs
Stars: ✭ 521 (+131.56%)
Mutual labels:  search, emacs
Rg.el
Emacs search tool based on ripgrep
Stars: ✭ 277 (+23.11%)
Mutual labels:  search, emacs
Swiper
Ivy - a generic completion frontend for Emacs, Swiper - isearch with an overview, and more. Oh, man!
Stars: ✭ 1,948 (+765.78%)
Mutual labels:  search, emacs
Vimish Fold
Vim-like text folding for Emacs
Stars: ✭ 220 (-2.22%)
Mutual labels:  emacs
Homebrew Emacs Head
GNU Emacs formula for the Homebrew package manager
Stars: ✭ 214 (-4.89%)
Mutual labels:  emacs
Scout
RESTful search server written in Python, powered by SQLite.
Stars: ✭ 213 (-5.33%)
Mutual labels:  search
Github Review
Github code reviews with Emacs.
Stars: ✭ 210 (-6.67%)
Mutual labels:  emacs
Docker Emacs
Dockerized Emacs (GUI)
Stars: ✭ 224 (-0.44%)
Mutual labels:  emacs
Sitedorks
Search Google/Bing/Ecosia/DuckDuckGo/Yandex/Yahoo for a search term with a default set of websites, bug bounty programs or a custom collection.
Stars: ✭ 221 (-1.78%)
Mutual labels:  search
Hiddensearchwithrecyclerview
Simple library to have a hidden/shown search bar
Stars: ✭ 220 (-2.22%)
Mutual labels:  search
Material Ui Search Bar
Material design search bar
Stars: ✭ 215 (-4.44%)
Mutual labels:  search
Bower Components
[DEPRECATED] Site to discover Bower components
Stars: ✭ 220 (-2.22%)
Mutual labels:  search
Tldrstory
AI-powered understanding of headlines and story text
Stars: ✭ 214 (-4.89%)
Mutual labels:  search
Bufler.el
A butler for your buffers. Group buffers into workspaces with programmable rules, and easily switch to and manipulate them.
Stars: ✭ 222 (-1.33%)
Mutual labels:  emacs
Modalka
Modal editing your way
Stars: ✭ 212 (-5.78%)
Mutual labels:  emacs
Search Engine Parser
Lightweight package to query popular search engines and scrape for result titles, links and descriptions
Stars: ✭ 216 (-4%)
Mutual labels:  search
Live Py Plugin
Live coding in Python with PyCharm, Emacs, Sublime Text, or even a browser
Stars: ✭ 222 (-1.33%)
Mutual labels:  emacs
Emacs Bash Completion
Add programmable bash completion to Emacs shell-mode
Stars: ✭ 217 (-3.56%)
Mutual labels:  emacs
Atom One Dark Theme
Atom One Dark - An Emacs port of the Atom One Dark theme from Atom.io.
Stars: ✭ 217 (-3.56%)
Mutual labels:  emacs

engine-mode

MELPA Melpa Stable Status License: GPL v3

engine-mode is a global minor mode for Emacs. It enables you to easily define search engines, bind them to keybindings, and query them from the comfort of your editor.

demo

For example, suppose we want to be able to easily search GitHub:

(defengine github
  "https://github.com/search?ref=simplesearch&q=%s")

This defines an interactive function engine/search-github. When executed it will take the selected region (or prompt for input, if no region is selected) and search GitHub for it, displaying the results in your default browser.

The defengine macro can also take an optional key combination, prefixed with engine/keymap-prefix (which defaults to "C-x /"). That keybinding will be wrapped in a call to kbd.

(defengine duckduckgo
  "https://duckduckgo.com/?q=%s"
  :keybinding "d")

C-x / d is now bound to the new function engine/search-duckduckgo! Nifty.

If you'd like to see a video on the whys and wherefores of this mode, check out the talk @hrs gave at EmacsNYC.

Installation

engine-mode is available on MELPA.

You can also install it like any other elisp file by adding it to your load path and globally enabling it:

(require 'engine-mode)
(engine-mode t)

Changing your default browser

engine-mode uses the engine/browser-function variable to determine which browser it should use to open the URL it constructs. To change the default browser, redefine engine/browser-function. For example, to always use Emacs' built-in eww browser:

(setq engine/browser-function 'eww-browse-url)

engine/browser-function defaults to browse-url-browser-function, which Emacs uses globally to open links.

The implementation of the browse-url-browser-function variable contains a comprehensive list of possible browser functions. You can get to that by hitting C-h v browser-url-browser-function <RETURN> and following the link to browse-url.el.

Changing your browser on a per-engine basis

To only change the browser for a single engine, use the :browser keyword argument when you define the engine. For example, to use eww only for your GitHub search results, try:

(defengine github
  "https://github.com/search?ref=simplesearch&q=%s"
  :browser 'eww-browse-url)

As mentioned about, see the implementation of the browse-url-browser-function for a definitive list of browsers.

Changing the keymap prefix

The default keymap prefix for engine-mode is C-x /. If you'd like to bind the keymap to an additional prefix (say, C-c s), you totally can:

(engine/set-keymap-prefix (kbd "C-c s"))

Custom docstrings

defengine assigns each engine a reasonable default docstring, but you can override that on a case-by-case basis with the :docstring keyword argument:

(defengine ctan
  "http://www.ctan.org/search/?x=1&PORTAL=on&phrase=%s"
  :docstring "Search the Comprehensive TeX Archive Network (ctan.org)")

Modifying the search term before sending it

An engine might want to transform a search term in some way before it interpolates the term into the URL. Maybe the term should have a different encoding, or be capitalized differently, or, uh, be passed through ROT13. Whatever the reason, you can apply a custom transformation to a search term by passing a function to defengine through the :term-transformation-hook keyword argument.

For example, to UPCASE all of your DuckDuckGo searches:

(defengine duckduckgo
  "https://duckduckgo.com/?q=%s"
  :term-transformation-hook upcase)

Or, to ensure that all your queries are encoded as latin-1:

(defengine diec2
  "dlc.iec.cat/results.asp?txtEntrada=%s"
  :term-transformation-hook (lambda (term) (encode-coding-string term latin-1))
  :keybinding "c")

Importing keyword searches from other browsers

Since many browsers save keyword searches using the same format as engine-mode (that is, by using %s in a url to indicate a search term), it's not too hard to import them into Emacs.

@sshaw has written a script to import from Chrome on OS X. Thanks for that!

Engine examples

(defengine amazon
  "http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=%s")

(defengine duckduckgo
  "https://duckduckgo.com/?q=%s"
  :keybinding "d")

(defengine github
  "https://github.com/search?ref=simplesearch&q=%s")

(defengine google
  "http://www.google.com/search?ie=utf-8&oe=utf-8&q=%s"
  :keybinding "g")

(defengine google-images
  "http://www.google.com/images?hl=en&source=hp&biw=1440&bih=795&gbv=2&aq=f&aqi=&aql=&oq=&q=%s")

(defengine google-maps
  "http://maps.google.com/maps?q=%s"
  :docstring "Mappin' it up.")

(defengine project-gutenberg
  "http://www.gutenberg.org/ebooks/search/?query=%s")

(defengine qwant
  "https://www.qwant.com/?q=%s")

(defengine rfcs
  "http://pretty-rfc.herokuapp.com/search?q=%s")

(defengine stack-overflow
  "https://stackoverflow.com/search?q=%s")

(defengine twitter
  "https://twitter.com/search?q=%s")

(defengine wikipedia
  "http://www.wikipedia.org/search-redirect.php?language=en&go=Go&search=%s"
  :keybinding "w"
  :docstring "Searchin' the wikis.")

(defengine wiktionary
  "https://www.wikipedia.org/search-redirect.php?family=wiktionary&language=en&go=Go&search=%s")

(defengine wolfram-alpha
  "http://www.wolframalpha.com/input/?i=%s")

(defengine youtube
  "http://www.youtube.com/results?aq=f&oq=&search_query=%s")
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].