├── .gitignore ├── README.md ├── image ├── open-github.png └── select-region.png ├── make-github-url-from-file └── open-github-from-here.el /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/emacs-open-github-from-here/HEAD/README.md -------------------------------------------------------------------------------- /image/open-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/emacs-open-github-from-here/HEAD/image/open-github.png -------------------------------------------------------------------------------- /image/select-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/emacs-open-github-from-here/HEAD/image/select-region.png -------------------------------------------------------------------------------- /make-github-url-from-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/emacs-open-github-from-here/HEAD/make-github-url-from-file -------------------------------------------------------------------------------- /open-github-from-here.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibayu36/emacs-open-github-from-here/HEAD/open-github-from-here.el --------------------------------------------------------------------------------