コード例 #1
0
 def cmd(name):
     """Command decorator for the PrintingController class."""
     # pylint: disable=no-self-argument
     return g.new_cmd_decorator(name, [
         'c',
         'printingController',
     ])
コード例 #2
0
 def cmd(name):
     '''Command decorator for the ChapterController class.'''
     # pylint: disable=no-self-argument
     return g.new_cmd_decorator(name, [
         'c',
         'chapterController',
     ])
コード例 #3
0
def cmd(name):
    '''Command decorator for the KillBufferCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'killBufferCommands',])
コード例 #4
0
def cmd(name):
    '''Command decorator for the KillBufferCommandsClass class.'''
    return g.new_cmd_decorator(name, [
        'c',
        'killBufferCommands',
    ])
コード例 #5
0
ファイル: leoChapters.py プロジェクト: XCaminhante/leo-editor
def cmd(name):
    """Command decorator for the ChapterController class."""
    return g.new_cmd_decorator(name, [
        'c',
        'chapterController',
    ])
コード例 #6
0
def cmd(name):
    """Command decorator for the SpellCommandsClass class."""
    return g.new_cmd_decorator(name, [
        'c',
        'spellCommands',
    ])
コード例 #7
0
def cmd(name):
    """Command decorator for the PrintingController class."""
    return g.new_cmd_decorator(name, [
        'c',
        'printingController',
    ])
コード例 #8
0
def cmd(name):
    '''Command decorator for the helpCommands class.'''
    return g.new_cmd_decorator(name, [
        'c',
        'helpCommands',
    ])
コード例 #9
0
def cmd(name):
    '''Command decorator for the EditFileCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'editFileCommands',])
コード例 #10
0
ファイル: macroCommands.py プロジェクト: pmills/leo-editor
def cmd(name):
    '''Command decorator for the MacroCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'macroCommands',])
コード例 #11
0
def cmd(name):
    '''Command decorator for the AsiiDoctorCommands class.'''
    return g.new_cmd_decorator(name, ['c', 'asciiDoctorCommands',])
コード例 #12
0
def cmd(name):
    '''Command decorator for the RectangleCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'rectangleCommands',])
コード例 #13
0
ファイル: debugCommands.py プロジェクト: Darriall/leo-editor
def cmd(name):
    '''Command decorator for the DebugCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'debugCommands',])
コード例 #14
0
def cmd(name):
    """Command decorator for the abbrevCommands class."""
    return g.new_cmd_decorator(name, [
        'c',
        'abbrevCommands',
    ])
コード例 #15
0
def cmd(name):
    '''Command decorator for the MacroCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'macroCommands',])
コード例 #16
0
ファイル: leoChapters.py プロジェクト: Darriall/leo-editor
 def cmd(name):
     '''Command decorator for the ChapterController class.'''
     # pylint: disable=no-self-argument
     return g.new_cmd_decorator(name, ['c', 'chapterController',])
コード例 #17
0
ファイル: abbrevCommands.py プロジェクト: SPRIME01/leo-editor
def cmd(name):
    '''Command decorator for the abbrevCommands class.'''
    return g.new_cmd_decorator(name, ['c', 'abbrevCommands',])
コード例 #18
0
def cmd(name):
    '''Command decorator for the SpellCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'spellCommands',])
コード例 #19
0
def cmd(name):
    '''Command decorator for the RegisterCommandsClass class.'''
    return g.new_cmd_decorator(name, [
        'c',
        'registerCommands',
    ])
コード例 #20
0
def cmd(name):
    """Command decorator for the BufferCommands class."""
    return g.new_cmd_decorator(name, ['c', 'bufferCommands',])
コード例 #21
0
def cmd(name):
    '''Command decorator for the EditFileCommandsClass class.'''
    return g.new_cmd_decorator(name, [
        'c',
        'editFileCommands',
    ])
コード例 #22
0
def cmd(name):
    """Command decorator for the DebugCommandsClass class."""
    return g.new_cmd_decorator(name, [
        'c',
        'debugCommands',
    ])
コード例 #23
0
def cmd(name):
    '''Command decorator for the ControlCommandsClass class.'''
    return g.new_cmd_decorator(name, ['c', 'controlCommands',])
コード例 #24
0
def cmd(name):
    """Command decorator for the RectangleCommandsClass class."""
    return g.new_cmd_decorator(name, [
        'c',
        'rectangleCommands',
    ])
コード例 #25
0
def cmd(name):
    """Command decorator for the ControlCommandsClass class."""
    return g.new_cmd_decorator(name, [
        'c',
        'controlCommands',
    ])
コード例 #26
0
def cmd(name):
    """Command decorator for the SpellCommandsClass class."""
    return g.new_cmd_decorator(name, ["c", "spellCommands"])