Action

Add Current Line to Clipboard

Posted by @singleitemstore, Last update almost 6 years ago

Copies the current line to the clipboard without having to select text.

Steps

  • script

    // Select Current Line
    
    var lineRange = editor.getSelectedLineRange();
    var eol = lineRange[0] + lineRange[1];
    
    if ( editor.getTextInRange( eol - 1, 1 ) === '\n' ) {
      eol = eol - 1;
    }
    
    line = editor.getTextInRange( lineRange[0], eol - lineRange[0] );
    
    app.setClipboard(line);
    

Options

  • After Success Default
    Notification Info
    Log Level None
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.