gh-i icon indicating copy to clipboard operation
gh-i copied to clipboard

🔎 search your github issues interactively



PR Go releases

search your github issues interactively

InstallationUsageFeedback

Search GitHub issues interactively from the command line. Where did you open that bug report three weeks ago? And how many feature requests are still open in your organisation 🤔?

...well say no more:

example_image

Installation

gh extension install gennaro-tedesco/gh-i

This being a gh extension, you of course need gh cli as prerequisite.

Usage

Get started!

gh i

demo

Without any flags gh i shows all the issues created by yourself in order of last update: this is in the vast majority of cases what you are after, is it not? To refine the search, however, the following flags are availabe

gh i [flag]

takes one of the following arguments or flags

flags description example
--me only show issues created by yourself gh i --me=false
default to true
-s, --state search issues by state (open, closed) gh i -s closed
default to none, namely both
-t, --title search for issue title gh i -t bug-fix
-b, --body search in issue body gh i -b "not working"
-u, --user search in repos owned by user only gh i --me -u @me
-l, --label search for issues by label gh i -l bug -l fix (AND)
gh i -l bug,fix (OR)
-c, --colour change colour of the prompt gh i -c magenta
-h, --help show the help page gh i -h
-o, --output print the output to console
default to false, namely open in the browser
gh i -u @me -o
-V, --version print the current version gh i -V

gh-i provides the user with visual output of the selected query in human readable format (according to the list of chosen flags):

$ gh i -s open -u @me --me=false
╭──────────────────────────────────────────────╮
│  state:open + author:any + where:your repos  │
╰──────────────────────────────────────────────╯
...

as well as inline overlay of issue status when browsing through the selection list.

The prompt accepts the following navigation commands:

key description
arrow keys browse results list
/ toggle search in results list
enter (<CR>) open issue in browser or return its URL as output (if -o)

Execute commands

gh-i must be intended as a filter, to browse the issues you created; as such, the best and most flexible way to execute commands with the results is to pipe it into and from stdin/stdout. This said, since in most cases one just wants to view and open the corresponding issue, we default to this action, namely upon selection the issue is opened in the web browser; to override this behaviour and return the output instead, use the -o flag.

Check the Wiki for more example and the most common use cases!

Feedback

If you find this application useful consider awarding it a ⭐, it is a great way to give feedback! Otherwise, any additional suggestions or merge request is warmly welcome!

See also the complete family of extensions

  • gh-s to search for repositories with interactive prompt
  • gh-f to snap around your git worfklow with fzf