├── .gitignore ├── AboutDlg.cpp ├── AboutDlg.h ├── EmmetNPP.cpp ├── EmmetNPP ├── PyV8.py ├── _PyV8.pyd ├── editor.js ├── emmet │ ├── __init__.py │ ├── context.py │ ├── emmet-app.js │ ├── file.py │ ├── python-wrapper.js │ ├── pyv8loader.py │ ├── semver.py │ └── snippets.json └── npp_emmet.py ├── FuncItemManager.cpp ├── FuncItemManager.h ├── LICENSE ├── README.md ├── ZenCoding-Python.rc ├── ZenCoding-Python.sln ├── ZenCoding-Python.vcxproj ├── ZenCoding-Python.vcxproj.filters ├── dllmain.cpp ├── emmet-npp.zip ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/.gitignore -------------------------------------------------------------------------------- /AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/AboutDlg.cpp -------------------------------------------------------------------------------- /AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/AboutDlg.h -------------------------------------------------------------------------------- /EmmetNPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP.cpp -------------------------------------------------------------------------------- /EmmetNPP/PyV8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/PyV8.py -------------------------------------------------------------------------------- /EmmetNPP/_PyV8.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/_PyV8.pyd -------------------------------------------------------------------------------- /EmmetNPP/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/editor.js -------------------------------------------------------------------------------- /EmmetNPP/emmet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmmetNPP/emmet/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/context.py -------------------------------------------------------------------------------- /EmmetNPP/emmet/emmet-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/emmet-app.js -------------------------------------------------------------------------------- /EmmetNPP/emmet/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/file.py -------------------------------------------------------------------------------- /EmmetNPP/emmet/python-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/python-wrapper.js -------------------------------------------------------------------------------- /EmmetNPP/emmet/pyv8loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/pyv8loader.py -------------------------------------------------------------------------------- /EmmetNPP/emmet/semver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/semver.py -------------------------------------------------------------------------------- /EmmetNPP/emmet/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/emmet/snippets.json -------------------------------------------------------------------------------- /EmmetNPP/npp_emmet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/EmmetNPP/npp_emmet.py -------------------------------------------------------------------------------- /FuncItemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/FuncItemManager.cpp -------------------------------------------------------------------------------- /FuncItemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/FuncItemManager.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/README.md -------------------------------------------------------------------------------- /ZenCoding-Python.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/ZenCoding-Python.rc -------------------------------------------------------------------------------- /ZenCoding-Python.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/ZenCoding-Python.sln -------------------------------------------------------------------------------- /ZenCoding-Python.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/ZenCoding-Python.vcxproj -------------------------------------------------------------------------------- /ZenCoding-Python.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/ZenCoding-Python.vcxproj.filters -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /emmet-npp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/emmet-npp.zip -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmetio/npp/HEAD/targetver.h --------------------------------------------------------------------------------