示例#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)
示例#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)
示例#3
0
文件: sublime.py 项目: ronnyzxr/aml
def get_clipboard():
    return sublime_api.get_clipboard()