python -> Code: arr = u'цстрока встрока астрока ястрока'.split(' ') arr.sort() for item in arr: print(item)
Это и есть готовое, почти. Python plugin на notepad++ ставишь, создаешь в нем плагин такого содержания Code: text = editor.getSelText() isSelection = True if not text: isSelection = False text = editor.getText() text = text.split(' ') text.sort() if isSelection: editor.replaceSel(' '.join(text)) else: editor.setText(' '.join(text) Только с табами осторожнее, python их не воспринимает.