- No longer relies on C++ editorconfig but on the .NET port
- Moved to @jedmao branch that relies on codemaid based architecture so we can restore global settings more aggressively This to relieve a common nuisance that having two visual studios one with and one without .editorconfig settings do not respect global (default) settings.
- Add file template to easily add
.editorconfig
file to a project - Re added @jaredpars autocomplete and syntax highlight work
- Moved to paket and fake for builds and dependency management
- Moved to VS SDK nuget packages
- Fixed SO exception when renaming a file (only occured in development version not in previously published release)
- Autocomplete now accepts domain properties
- VS 2015 support
- Enforces settings on document open (i.e., trim trailing whitespace, fix line endings and fix mixed tabs/spaces).
- Analyzes document for indent size trend and, if inconsistent, adjusts to fit settings.
- Enforces settings before save (i.e., trim trailing whitespace, fix line endings and insert final newline).
- Restores global settings when document loses focus.
- Bug fixes
- Visual Studio 2013 support
- Built against Core 0.11.0
- Visual Studio 2012 support
- Ignore certain unsaved files (fix by Karaken12)
- Handle config files that have a Unicode BOM mark
- Ignore paths that begin with "http:"
- Fully handle the
indent_size=tab
case
- Fix bug #56
- Display core messages in the Visual Studio error window
- Initial release after re-writing the plugin from scratch