class documentation

class ACMETextArea(TextArea):

View In Hierarchy

An extended text area.

Method action_copy_to_clipboard Action callback: Copy the selected text to the clipboard.
Method action_paste_from_clipboard Action callback: Paste the clipboard content to the cursor position.
Constant BINDINGS The key bindings for the text area.
def action_copy_to_clipboard(self):

Action callback: Copy the selected text to the clipboard.

def action_paste_from_clipboard(self):

Action callback: Paste the clipboard content to the cursor position.

BINDINGS =

The key bindings for the text area.

Value
[Binding('ctrl+p', 'copy_to_clipboard', 'copy',
         key_display='CTRL-p'),
 Binding('cmd+c', 'copy_to_clipboard'),
 Binding('ctrl+v', 'paste_from_clipboard', 'paste',
         key_display='CTRL-v')]