├── .gitignore ├── Bootstrap.iml ├── LICENSE ├── META-INF └── plugin.xml ├── README.md ├── animation.gif ├── resources └── liveTemplates │ └── Bootstrap.xml └── src └── com └── jasonnz └── bootstrap └── BootstapTemplatesProvider.java /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /*.jar 3 | /out 4 | -------------------------------------------------------------------------------- /Bootstrap.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/Bootstrap.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/META-INF/plugin.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/animation.gif -------------------------------------------------------------------------------- /resources/liveTemplates/Bootstrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/resources/liveTemplates/Bootstrap.xml -------------------------------------------------------------------------------- /src/com/jasonnz/bootstrap/BootstapTemplatesProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonMortonNZ/bootstrap3-phpstorm-plugin/HEAD/src/com/jasonnz/bootstrap/BootstapTemplatesProvider.java --------------------------------------------------------------------------------