Github-issues.el

github-issues.el --- Emacs utility functions and modes for managing GitHub projects' issues

View the Project on GitHub inkel/github-issues.el

github-issues.el

An Emacs mode for managing project's issues on GitHub.

The final goal for using github-issues.el is to list, show, add, edit, remove, comment and assign issues on GitHub hosted projects without leaving Emacs.

Dependencies

I've tried to keep the dependencies to a minimum. Current dependencies are:

Functions

github-issues (user repo)

Opens a github-issues-mode buffer listing the issues for the given user and repository.

github-issue (user repo number) NOT IMPLEMENTED

Interactive function that opens a new github-issue-mode buffer with the given issue description.

Non-interactive functions

github-issues-buffer (user repo)

Creates or return the buffer for the given user and repository.

github-issue-buffer (user repo number)

Creates or return the buffer for the given issue.

github-parse-response

Parses the JSON response from a GitHub API call.

github-api-repository-issues (user repo)

Returns a list of issues in plist format.

github-api-repository-issue (user repo number)

Return an issue data in plist format.

github-issues-populate (buffer issues)

Populates the given buffer with a list of issues. See github-api-repository-issues.

github-issue-populate (buffer issue)

Populates the given buffer with an issue description. See github-api-repository-issue.

Modes

github-issues-mode

Major mode derived from tabulated-list-mode, to display a list of issues.

In this mode the following keymap is active:

github-issue-mode

Major mode derived from font-lock-mode to display a given issue data.

In this mode the following keymap is active:

TODO