├── LICENSE ├── README.md └── all └── hyperhelpcore ├── HyperHelp ├── bootstrap.py ├── commands.py ├── contexts.py ├── devtools.py ├── events.py ├── help │ ├── api.txt │ ├── authoring.txt │ ├── bookmarks.txt │ ├── changelog.txt │ ├── commands.txt │ ├── example.txt │ ├── help_index.txt │ ├── help_on_help.txt │ ├── hyperhelp.json.sublime-ignored │ ├── index.txt │ ├── integration.txt │ ├── key_contexts.txt │ ├── settings.txt │ ├── style.txt │ └── syntax.txt ├── internalcmd.py └── resources │ ├── Context.sublime-menu.sublime-ignored │ ├── Default (Linux).sublime-keymap.sublime-ignored │ ├── Default (OSX).sublime-keymap.sublime-ignored │ ├── Default (Windows).sublime-keymap.sublime-ignored │ ├── HyperHelp-Help.sublime-settings.sublime-ignored │ ├── HyperHelp.sublime-commands.sublime-ignored │ ├── HyperHelp.sublime-settings.sublime-ignored │ ├── Main.sublime-menu.sublime-ignored │ ├── Preferences.sublime-settings-hints.sublime-ignored │ ├── Symbol List - Exclusions.tmPreferences.sublime-ignored │ ├── Symbol List - Headers.tmPreferences.sublime-ignored │ ├── Symbol List - Title.tmPreferences.sublime-ignored │ └── syntax │ ├── HyperHelp-Help.sublime-syntax.sublime-ignored │ ├── HyperHelp-Index.sublime-syntax.sublime-ignored │ └── HyperHelpComments.tmPreferences.sublime-ignored ├── __init__.py ├── bootstrapper.py ├── common.py ├── core.py ├── data.py ├── help.py ├── help_index.py ├── index_validator.py ├── startup.py ├── validictory ├── LICENSE.txt ├── __init__.py └── validator.py └── view.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/README.md -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/bootstrap.py -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/commands.py -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/contexts.py -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/devtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/devtools.py -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/events.py -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/api.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/authoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/authoring.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/bookmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/bookmarks.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/changelog.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/commands.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/example.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/help_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/help_index.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/help_on_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/help_on_help.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/hyperhelp.json.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/hyperhelp.json.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/index.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/integration.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/key_contexts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/key_contexts.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/settings.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/style.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/help/syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/help/syntax.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/internalcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/internalcmd.py -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Context.sublime-menu.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Context.sublime-menu.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Default (Linux).sublime-keymap.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Default (Linux).sublime-keymap.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Default (OSX).sublime-keymap.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Default (OSX).sublime-keymap.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Default (Windows).sublime-keymap.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Default (Windows).sublime-keymap.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/HyperHelp-Help.sublime-settings.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/HyperHelp-Help.sublime-settings.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/HyperHelp.sublime-commands.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/HyperHelp.sublime-commands.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/HyperHelp.sublime-settings.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/HyperHelp.sublime-settings.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Main.sublime-menu.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Main.sublime-menu.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Preferences.sublime-settings-hints.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Preferences.sublime-settings-hints.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Symbol List - Exclusions.tmPreferences.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Symbol List - Exclusions.tmPreferences.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Symbol List - Headers.tmPreferences.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Symbol List - Headers.tmPreferences.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/Symbol List - Title.tmPreferences.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/Symbol List - Title.tmPreferences.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/syntax/HyperHelp-Help.sublime-syntax.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/syntax/HyperHelp-Help.sublime-syntax.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/syntax/HyperHelp-Index.sublime-syntax.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/syntax/HyperHelp-Index.sublime-syntax.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/HyperHelp/resources/syntax/HyperHelpComments.tmPreferences.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/HyperHelp/resources/syntax/HyperHelpComments.tmPreferences.sublime-ignored -------------------------------------------------------------------------------- /all/hyperhelpcore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/__init__.py -------------------------------------------------------------------------------- /all/hyperhelpcore/bootstrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/bootstrapper.py -------------------------------------------------------------------------------- /all/hyperhelpcore/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/common.py -------------------------------------------------------------------------------- /all/hyperhelpcore/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/core.py -------------------------------------------------------------------------------- /all/hyperhelpcore/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/data.py -------------------------------------------------------------------------------- /all/hyperhelpcore/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/help.py -------------------------------------------------------------------------------- /all/hyperhelpcore/help_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/help_index.py -------------------------------------------------------------------------------- /all/hyperhelpcore/index_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/index_validator.py -------------------------------------------------------------------------------- /all/hyperhelpcore/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/startup.py -------------------------------------------------------------------------------- /all/hyperhelpcore/validictory/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/validictory/LICENSE.txt -------------------------------------------------------------------------------- /all/hyperhelpcore/validictory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/validictory/__init__.py -------------------------------------------------------------------------------- /all/hyperhelpcore/validictory/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/validictory/validator.py -------------------------------------------------------------------------------- /all/hyperhelpcore/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/hyperhelpcore/HEAD/all/hyperhelpcore/view.py --------------------------------------------------------------------------------