├── README.md ├── azure-pipelines.yml ├── images └── odoo_logo.png ├── package.json ├── releases ├── odoo-snippets-0.6.1.vsix └── odoo-snippets-0.7.1.vsix ├── snippets ├── python.json └── xml.json └── source ├── convert.py ├── data.json ├── demo.gif ├── glist.py └── snippets.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /images/odoo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/images/odoo_logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/package.json -------------------------------------------------------------------------------- /releases/odoo-snippets-0.6.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/releases/odoo-snippets-0.6.1.vsix -------------------------------------------------------------------------------- /releases/odoo-snippets-0.7.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/releases/odoo-snippets-0.7.1.vsix -------------------------------------------------------------------------------- /snippets/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/snippets/python.json -------------------------------------------------------------------------------- /snippets/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/snippets/xml.json -------------------------------------------------------------------------------- /source/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/source/convert.py -------------------------------------------------------------------------------- /source/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/source/data.json -------------------------------------------------------------------------------- /source/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/source/demo.gif -------------------------------------------------------------------------------- /source/glist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/source/glist.py -------------------------------------------------------------------------------- /source/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffery9/vscode-odoo-snippets/HEAD/source/snippets.json --------------------------------------------------------------------------------