├── .python-version ├── BUILDLOG.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── constant.sublime-completions ├── deprecated_function.sublime-completions ├── function.sublime-completions ├── ini_entry.sublime-completions ├── instantiable.sublime-completions ├── language_construct.sublime-completions ├── magic_method.sublime-completions ├── plugin.py ├── type_hint.sublime-completions ├── type_hint_class.sublime-completions ├── type_hint_exception.sublime-completions └── type_hint_interface.sublime-completions /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 2 | -------------------------------------------------------------------------------- /BUILDLOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/BUILDLOG.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/README.md -------------------------------------------------------------------------------- /constant.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/constant.sublime-completions -------------------------------------------------------------------------------- /deprecated_function.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/deprecated_function.sublime-completions -------------------------------------------------------------------------------- /function.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/function.sublime-completions -------------------------------------------------------------------------------- /ini_entry.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/ini_entry.sublime-completions -------------------------------------------------------------------------------- /instantiable.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/instantiable.sublime-completions -------------------------------------------------------------------------------- /language_construct.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/language_construct.sublime-completions -------------------------------------------------------------------------------- /magic_method.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/magic_method.sublime-completions -------------------------------------------------------------------------------- /plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/plugin.py -------------------------------------------------------------------------------- /type_hint.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/type_hint.sublime-completions -------------------------------------------------------------------------------- /type_hint_class.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/type_hint_class.sublime-completions -------------------------------------------------------------------------------- /type_hint_exception.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/type_hint_exception.sublime-completions -------------------------------------------------------------------------------- /type_hint_interface.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerardroche/sublime-phpck/HEAD/type_hint_interface.sublime-completions --------------------------------------------------------------------------------