| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/apps/katepart/scripts/ |
Upload File : |
// If you select some text before running the script, this line will be overwritten.
if ( view.hasSelection() )
{
document.removeText( 0, 0, 0, document.lineLength(0) );
document.insertText( 0, 0, "// initial selection: " + view.selectionStartLine + "," + view.selectionStartColumn + " - " + view.selectionEndLine + "," + view.selectionEndColumn );
}
// test selection interface
view.selectAll();
view.setSelection( 0, 0, 0, 20 );
view.clearSelection();
// insert some text and select that
var line = document.lines();
document.insertLine( line, "foo" );
document.insertText( line, 0, "// This is a new line" );
view.setSelection( line, 0, line, document.lineLength(line) );
// Delete that text
view.removeSelectedText();
// insert some text and select that
var line = document.lines();
document.insertLine( line, "bar");
document.insertText( line, 0, "// This is a new line" );
view.setSelection( line, 0, line, document.lineLength(line) );
document.insertText( line, document.lineLength( line ), " Selection is " + view.selectionStartLine + "," + view.selectionStartColumn + " - " + view.selectionEndLine + "," + view.selectionEndColumn );