├── .gitignore ├── README.md ├── camelcase.png ├── changecase.jpg ├── changecase.py ├── icon.png ├── icons.acorn ├── info.plist ├── kebabcase.png ├── lowercase.png ├── snakecase.png ├── titlecase.png ├── titlecase ├── __init__.py └── tests.py └── uppercase.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/README.md -------------------------------------------------------------------------------- /camelcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/camelcase.png -------------------------------------------------------------------------------- /changecase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/changecase.jpg -------------------------------------------------------------------------------- /changecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/changecase.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/icon.png -------------------------------------------------------------------------------- /icons.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/icons.acorn -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/info.plist -------------------------------------------------------------------------------- /kebabcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/kebabcase.png -------------------------------------------------------------------------------- /lowercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/lowercase.png -------------------------------------------------------------------------------- /snakecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/snakecase.png -------------------------------------------------------------------------------- /titlecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/titlecase.png -------------------------------------------------------------------------------- /titlecase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/titlecase/__init__.py -------------------------------------------------------------------------------- /titlecase/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/titlecase/tests.py -------------------------------------------------------------------------------- /uppercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gillibrand/alfred-change-case/HEAD/uppercase.png --------------------------------------------------------------------------------