Exemplo n.º 1
0
def get_clipboard(size_limit=16777216):
    """
    Returns the content of the clipboard, for performance reason if the size
    of the clipboard content is bigger than size_limit, an empty string will be
    returned
    """
    return sublime_api.get_clipboard(size_limit)
Exemplo n.º 2
0
def get_clipboard(size_limit=16777216):
    """
    Returns the content of the clipboard, for performance reason if the size
    of the clipboard content is bigger than size_limit, an empty string will be
    returned
    """
    return sublime_api.get_clipboard(size_limit)
Exemplo n.º 3
0
def get_clipboard():
    return sublime_api.get_clipboard()