bhoogle: Simple terminal GUI for local hoogle.

[ development, program, terminal ] [ Propose Tags ]

bhoogle is a terminal GUI layer over local hoogle. It provides search ahead and sub-string filtering in addition to the usual type-search.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.1.1, 0.1.2.1, 0.1.2.2, 0.1.2.3, 0.1.2.4, 0.1.2.5, 0.1.2.6, 0.1.2.7, 0.1.2.9, 0.1.3.1, 0.1.3.2, 0.1.3.3, 0.1.3.4, 0.1.3.5, 0.1.4.1, 0.1.4.2, 0.1.4.3
Dependencies base (>=4.9.1.0 && <5), brick (>=2.1), bytestring, containers, directory, filepath, hoogle, lens, process, protolude, text, time, typed-process, vector, vty (>=6.0), vty-crossplatform [details]
License (BSD-3-Clause OR Apache-2.0)
Copyright 2018-2024 Andre Van Der Merwe
Author Andre Van Der Merwe
Maintainer andre@andrevdm.com
Category Development, Terminal
Home page https://github.com/andrevdm/bhoogle#readme
Source repo head: git clone https://github.com/andrevdm/bhoogle
Uploaded by andrevdm at 2024-03-10T11:48:22Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables bhoogle
Downloads 7098 total (61 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2024-03-10 [all 1 reports]

Readme for bhoogle-0.1.4.3

[back to package description]

Hoogle terminal GUI.

bhoogle is a simple terminal GUI wrapper over hoogle.

ui

Setup

  • Make sure you have a local hoogle database created
  • If you don't already, then
    1. Install hoogle (e.g. stack install hoogle or cabal install hoogle)
    2. Generate the default database (hoogle generate)

Usage

  1. Enter a string in the "Type" edit box. You can filter the results to specific packages appending the +packagename syntax just like with Hoogle.
  2. Press enter to search: focus goes directly to the results list
  3. Or press tab to search and focus will go to the "text" edit box
  4. You can then filter the results by typing in the "text" edit box, any result containing the sub-string typed will be shown
  5. Navigate the results by using arrow or vi (hjkl) keys
  6. Pressing 's' in the results list will toggle the sort order
  7. Escape to exit
  8. Search-ahead is enable for any type search longer than ~3 characters
  9. When a result is selected p yanks the package name
  10. When a result is selected m yanks the module name

Settings

Location: ~/.config/bhoogle/bhoogle.conf

Eg:

yank=xclip
yankArgs=-selection c

Note that the version described in the blog is on the blog branch.