Columbo aufrufen.bsh zum Wurzelverzeichnis wechselnPVS {PVS[88] CS[112] C[116]}Datei anzeigen
/**
* Convert the portion of the current word to lower case, starting at the
* caret and moving to the end of the word. Emulates the Emacs "downcase-word"
* function.
*/
source (MiscUtilities.constructPath(dirname(scriptPath), "EmacsUtil.bsh"));
void emacsDowncaseWord()
{
caret = eatNonAlphanums();
textArea.goToNextWord (false);
endOfWord = textArea.getCaretPosition();
textArea.setCaretPosition (caret);
selection = new Selection.Range (caret, endOfWord);
textArea.setSelection (selection);
textArea.toLowerCase();
}
emacsDowncaseWord();
[ Original von:0.67Diese Quellcodebibliothek enthält Beispiele in vielen Programmiersprachen.
Man kann per Verzeichnistruktur darin navigieren.
Der Code wird farblich markiert angezeigt.
]