コード例 #1
0
def insert_last():
    """Inserts the last paste into current buffer"""
    paste = lodgeit.get_last_paste()
    lisp.insert(paste.code)
コード例 #2
0
ファイル: pastemacs.py プロジェクト: tabuchid/dotfiles
def insert_last():
    """Inserts the last paste into current buffer"""
    paste = lodgeit.get_last_paste()
    lisp.insert(paste.code)
コード例 #3
0
def fetch_last():
    """Fetches last paste and inserts it into a new buffer"""
    paste = lodgeit.get_last_paste()
    new_buffer_from_paste(paste)
コード例 #4
0
ファイル: pastemacs.py プロジェクト: tabuchid/dotfiles
def fetch_last():
    """Fetches last paste and inserts it into a new buffer"""
    paste = lodgeit.get_last_paste()
    new_buffer_from_paste(paste)