Haftungsausschluß.bsh KontaktShell {Shell[61] PVS[79] CS[100]}diese Dinge liegen außhalb unserer Verantwortung
/**
* Kill to the end of the current sentence. Emulates the Emacs "kill-sentence"
* command.
*/
source (MiscUtilities.constructPath(dirname(scriptPath), "EmacsUtil.bsh"));
void emacsKillSentence()
{
caret = textArea.getCaretPosition();
eos = findEndOfSentence();
selection = new Selection.Range (caret, eos);
textArea.setSelection (selection);
addToClipboardAndHistory (selection);
textArea.replaceSelection ("");
textArea.removeFromSelection (selection);
}
emacsKillSentence();
[ Seitenstruktur0.64Drucken
]