Skip to content

mhayashi1120/yagist.el

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yagist.el -- Yet Another Emacs integration for gist.github.com

Install

$ cd ~/.emacs.d/vendor
$ git clone git://github.com/mhayashi1120/yagist.el.git

In your emacs config:

(add-to-list 'load-path "~/.emacs.d/vendor/yagist.el")
(require 'yagist)

If you want to save encrypted token to ~/.gitconfig install elisp from following url. And set a variable:

https://github.com/mhayashi1120/Emacs-kaesar/raw/master/kaesar.el

(setq yagist-encrypt-risky-config t)

Functions

M-x yagist-list - Lists your gists in a new buffer. Use arrow keys
to browse, RET to open one in the other buffer.

M-x yagist-region - Copies Gist URL into the kill ring.
With a prefix argument, makes a private gist.

M-x yagist-region-private - Explicitly create a private gist.

M-x yagist-buffer - Copies Gist URL into the kill ring.
With a prefix argument, makes a private gist.

M-x yagist-buffer-private - Explicitly create a private gist.

M-x yagist-region-or-buffer - Post either the current region, or if mark
is not set, the current buffer as a new paste at gist.github.com .
Copies the URL into the kill ring.
With a prefix argument, makes a private paste.

M-x yagist-region-or-buffer-private - Explicitly create a gist from the
region or buffer.

M-x yagist-minor-mode - Automated POST current buffer contents to gist
after saving.

M-x yagist-global-minor-mode - Open the file that under gist repository
automatically activate `yagist-minor-mode'.

Config

Set yagist-view-gist to non-nil if you want to view your Gist using browse-url after it is created.

OAuth authentication

Get the Personal API Access Token from:

https://github.com/settings/applications

Save the token to your ~/.gitconfig :

$ git config --global github.oauth-token ***************************

Or put following to your .emacs:

(setq yagist-github-token "******************************")

Other customizations

 M-x customize-group (yagist)

Meta

About

Yet another Emacs paste mode, this one for Gist.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Emacs Lisp 99.6%
  • Makefile 0.4%