├── Default.sublime-keymap ├── LICENSE ├── README.md ├── command.py ├── error.py ├── extend_section_command.py ├── listener.py ├── messages.json ├── messages └── install.txt ├── settings_parser.py ├── tests ├── command_test_base.py ├── test_command_normal.py ├── test_command_special.py └── test_settings.py ├── toggle_command.py ├── util.py └── wrap_fixer.py /Default.sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/Default.sublime-keymap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/README.md -------------------------------------------------------------------------------- /command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/command.py -------------------------------------------------------------------------------- /error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/error.py -------------------------------------------------------------------------------- /extend_section_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/extend_section_command.py -------------------------------------------------------------------------------- /listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/listener.py -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/messages.json -------------------------------------------------------------------------------- /messages/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/messages/install.txt -------------------------------------------------------------------------------- /settings_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/settings_parser.py -------------------------------------------------------------------------------- /tests/command_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/tests/command_test_base.py -------------------------------------------------------------------------------- /tests/test_command_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/tests/test_command_normal.py -------------------------------------------------------------------------------- /tests/test_command_special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/tests/test_command_special.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /toggle_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/toggle_command.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/util.py -------------------------------------------------------------------------------- /wrap_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrekkie/WrapAsYouType/HEAD/wrap_fixer.py --------------------------------------------------------------------------------