├── LICENSE ├── README.md ├── abyss.py ├── abyss_filters ├── __init__.py ├── experimental │ ├── item_ctype.py │ ├── item_index.py │ ├── item_sync.py │ ├── lvars_alias.py │ └── lvars_info.py ├── hierarchy.py ├── signed_ops.py └── token_colorizer.py └── rsrc ├── func.gif └── signedops.gif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/README.md -------------------------------------------------------------------------------- /abyss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss.py -------------------------------------------------------------------------------- /abyss_filters/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /abyss_filters/experimental/item_ctype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/experimental/item_ctype.py -------------------------------------------------------------------------------- /abyss_filters/experimental/item_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/experimental/item_index.py -------------------------------------------------------------------------------- /abyss_filters/experimental/item_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/experimental/item_sync.py -------------------------------------------------------------------------------- /abyss_filters/experimental/lvars_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/experimental/lvars_alias.py -------------------------------------------------------------------------------- /abyss_filters/experimental/lvars_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/experimental/lvars_info.py -------------------------------------------------------------------------------- /abyss_filters/hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/hierarchy.py -------------------------------------------------------------------------------- /abyss_filters/signed_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/signed_ops.py -------------------------------------------------------------------------------- /abyss_filters/token_colorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/abyss_filters/token_colorizer.py -------------------------------------------------------------------------------- /rsrc/func.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/rsrc/func.gif -------------------------------------------------------------------------------- /rsrc/signedops.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/abyss/HEAD/rsrc/signedops.gif --------------------------------------------------------------------------------