File: magithub-repo.el

package info (click to toggle)
magithub 0.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,920 kB
  • sloc: lisp: 3,684; makefile: 82
file content (51 lines) | stat: -rw-r--r-- 1,569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
;;; magithub-repo.el --- repo tools              -*- lexical-binding: t; -*-

;; Copyright (C) 2017-2018  Sean Allred

;; Author: Sean Allred <code@seanallred.com>
;; Keywords: lisp

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Basic tools for working with repositories.

;;; Code:

(require 'magit)
(require 'thingatpt)

(require 'magithub-core)

(defvar magit-magithub-repo-section-map
  (let ((m (make-sparse-keymap)))
    (set-keymap-parent m magithub-map)
    (define-key m [remap magithub-browse-thing] #'magithub-repo-browse)
    m))

(defun magithub-repo-browse (repo)
  (interactive (list (thing-at-point 'github-repo)))
  (unless repo
    (user-error "No repository found at point"))
  (let-alist repo
    (browse-url .html_url)))

(defun magithub-repo-data-dir (repo)
  (let-alist repo
    (expand-file-name (format "%s/%s/" .owner.login .name)
                      magithub-dir)))

(provide 'magithub-repo)
;;; magithub-repo.el ends here