├── .gitignore ├── .gitmodules ├── LICENSE ├── Tidy2.sln ├── Tidy2 ├── AboutDialog.cpp ├── AboutDialog.h ├── NppInterface │ ├── Docking.h │ ├── DockingDlgInterface.h │ ├── Notepad_plus_msgs.h │ ├── PluginInterface.h │ ├── Scintilla.h │ ├── StaticDialog.cpp │ ├── StaticDialog.h │ ├── Window.h │ └── dockingResource.h ├── PluginDetails.h ├── PluginMain.cpp ├── PluginMain.h ├── ReadMe.txt ├── Tidy2.vcxproj ├── Tidy2.vcxproj.filters ├── VersionAndAbout.rc ├── dllmain.cpp ├── environment.props ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── appveyor.yml └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/LICENSE -------------------------------------------------------------------------------- /Tidy2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2.sln -------------------------------------------------------------------------------- /Tidy2/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/AboutDialog.cpp -------------------------------------------------------------------------------- /Tidy2/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/AboutDialog.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/Docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/Docking.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/DockingDlgInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/DockingDlgInterface.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/PluginInterface.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/Scintilla.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/StaticDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/StaticDialog.cpp -------------------------------------------------------------------------------- /Tidy2/NppInterface/StaticDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/StaticDialog.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/Window.h -------------------------------------------------------------------------------- /Tidy2/NppInterface/dockingResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/NppInterface/dockingResource.h -------------------------------------------------------------------------------- /Tidy2/PluginDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/PluginDetails.h -------------------------------------------------------------------------------- /Tidy2/PluginMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/PluginMain.cpp -------------------------------------------------------------------------------- /Tidy2/PluginMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/PluginMain.h -------------------------------------------------------------------------------- /Tidy2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/ReadMe.txt -------------------------------------------------------------------------------- /Tidy2/Tidy2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/Tidy2.vcxproj -------------------------------------------------------------------------------- /Tidy2/Tidy2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/Tidy2.vcxproj.filters -------------------------------------------------------------------------------- /Tidy2/VersionAndAbout.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/VersionAndAbout.rc -------------------------------------------------------------------------------- /Tidy2/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/dllmain.cpp -------------------------------------------------------------------------------- /Tidy2/environment.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/environment.props -------------------------------------------------------------------------------- /Tidy2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/resource.h -------------------------------------------------------------------------------- /Tidy2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/stdafx.cpp -------------------------------------------------------------------------------- /Tidy2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/stdafx.h -------------------------------------------------------------------------------- /Tidy2/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/Tidy2/targetver.h -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/appveyor.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruderstein/NppTidy2/HEAD/readme.md --------------------------------------------------------------------------------