Ejemplo n.º 1
0
def insert_last():
    """Inserts the last paste into current buffer"""
    paste = lodgeit.get_last_paste()
    lisp.insert(paste.code)
Ejemplo n.º 2
0
def insert_last():
    """Inserts the last paste into current buffer"""
    paste = lodgeit.get_last_paste()
    lisp.insert(paste.code)
Ejemplo n.º 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)
Ejemplo n.º 4
0
def fetch_last():
    """Fetches last paste and inserts it into a new buffer"""
    paste = lodgeit.get_last_paste()
    new_buffer_from_paste(paste)