コード例 #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
ファイル: sublime.py プロジェクト: twolfson/sublime-files
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()