├── Preferences.sublime-settings ├── __init__.py ├── action_cmds.py ├── ex ├── __init__.py └── parser │ ├── __init__.py │ ├── scanner_command_split.py │ ├── scanner_command_vnew.py │ └── subscanners.py ├── ex_commands.py ├── readme.md └── xactions.py /Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/Preferences.sublime-settings -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/__init__.py -------------------------------------------------------------------------------- /action_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/action_cmds.py -------------------------------------------------------------------------------- /ex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex/parser/scanner_command_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/ex/parser/scanner_command_split.py -------------------------------------------------------------------------------- /ex/parser/scanner_command_vnew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/ex/parser/scanner_command_vnew.py -------------------------------------------------------------------------------- /ex/parser/subscanners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/ex/parser/subscanners.py -------------------------------------------------------------------------------- /ex_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/ex_commands.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/readme.md -------------------------------------------------------------------------------- /xactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodcloutier/Vintageous-Origami/HEAD/xactions.py --------------------------------------------------------------------------------