Skip to content

Instantly share code, notes, and snippets.

@dmitryTsatsarin
Created March 4, 2016 14:43
Show Gist options
  • Save dmitryTsatsarin/5a9bf67ca00d572af8dc to your computer and use it in GitHub Desktop.
Save dmitryTsatsarin/5a9bf67ca00d572af8dc to your computer and use it in GitHub Desktop.
Заменить в выделенном тексте все пробелы на нижния подчеркивания и сделать все буквы маленькими (скрипт для AutoKey)
# Enter script code
text = clipboard.get_selection()
text = text.lower().replace(' ', '_')
keyboard.send_key("<delete>")
keyboard.send_keys("%s"% text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment