Columbo aufrufen.bsh zum Wurzelverzeichnis wechselnCS {CS[81] Ada[125] Abap[151]}Datei anzeigen
/**
* Convert the portion of the current word to title case, starting at the
* caret and moving to the end of the word. Emulates the Emacs "capitalize-word"
* function.
*/
source (MiscUtilities.constructPath(dirname(scriptPath), "EmacsUtil.bsh"));
void emacsCapitalizeWord()
{
caret = eatNonAlphanums();
// Adjust to beginning of the word (skipping any non-word chars)
textArea.goToNextWord (false);
endOfWord = textArea.getCaretPosition();
textArea.setCaretPosition (caret);
selection = new Selection.Range (caret, endOfWord);
word = textArea.getText (caret, endOfWord - caret);
if (word.length() > 0)
{
ch = word.toCharArray();
ch[0] = Character.toUpperCase (ch[0]);
for (i = 1; i < ch.length; i++)
ch[i] = Character.toLowerCase (ch[i]);
textArea.setSelection (selection);
textArea.setSelectedText (new String (ch));
textArea.removeFromSelection (selection);
}
}
emacsCapitalizeWord();
[ Original von:0.73Diese Quellcodebibliothek enthält Beispiele in vielen Programmiersprachen.
Man kann per Verzeichnistruktur darin navigieren.
Der Code wird farblich markiert angezeigt.
]