- Fix: disable inline comments highlighting in .editorconfig files (by @DecimalTurn)
- Fix: Don't apply
charseton document open (it's still applied on active editor change)
- New: support
charset
- Fix: indentation shifting on focus
- New: allow separate tabSize and indentSize (by @yshui)
- Fix: allow empty values in .editorconfig
- Fix: use the
insertFinalNewLinecommand to insert a final newline, fixes selection change
- Fix: The cursor position doesn't unexpectedly change when typing fast/whitespace render mode changes/using
INSERTmode in vscodevim - Revert: The cursor position changes if it was on the last character of the last line when the last newline was inserted. This is an expected regression that will be fixed in the next version after the VSCode update
- New: add option to disable the "Generate .editorconfig" context menu entry (by @SunsetTechuila)
- New: allow the extension to be active in untrusted workspaces (by @jashug)
- Fix: apply formatting before file saving (by @SunsetTechuila)
- Fix: keep selection on formatting (by @SunsetTechuila)
- Fix: apply config to untitled files
- Fix: disable the
virtualWorkspacesfeature because theeditorconfigdependency relies on a normal filesystem
- Fix: apply config on window reload
(
#283) - Change activation event to
onStartupFinishedinstead of*
- Fix: don't set EOL when no EOL config
(
#299)
- Improve installation instructions in README.
- Defer to VSCode's built-in EOL sequence normalization, when appropriate.
- Fix: default template path RegExp.
- New: expose configuration settings for template generation
(
#277).
- Fix: add comments to top of generated
.editorconfigfile (#271).
- Fix: related all files with extension
.editorconfigas EditorConfig (#281).
- Fix: end_of_line rule no longer destroys redo history
(
#288).
- Update dependencies.
- Remove dependency on
lodash,lodash.get,cash-cp.
- Fix: Fixed code completion for .editorconfig file
(
#270).
- New: Added grammar for .editorconfig file.
(
#269).
- Fix: EditorConfig modifies selection incorrectly when the extension host
is busy
(
#236).
- Fix: unhandled error when generating
.editorconfig(#255).
- Fix: "File not found" issue when generating
.editorconfigfile (#252).
- Fix: Don't cache editor configuration, as it can change at any time.
- New: Provide APIs to other extensions.
- Fix: Prevent document watcher from trying to load a config for an undefined text document.
- Fix: Generate config with a final newline if it's enabled.
- Add missing changelog for v0.12.7.
- Fix: Respond to external
.editorconfigedits.
- Fix support for
unsetby not overriding built-in "detect indentation" functionality#201. Thanks@slartibardfast!
- Update dependencies.
- Use HTTPS links to EditorConfig.org
#197.
- Fix "Generate .editorconfig" to specify
indent_sizeinstead of (invalid)tab_size#195.
- Fix multi-root warning
#192.
- Provide fallback for workspace root directory when creating config file
#188.
- Support multi-root workspaces
#174.
- Update EditorConfig dependency.
- Support
unsetvalue.
- Rollback
#166until we can ensure final newlines are not removed by default.
- Remove final newlines when
insert_final_newline = false#166.
- Fix
documentofundefinederror.
- Fix workspace issue on Linux
#145.
- Improve/simplify output channel messaging.
- Fix issue 135: extension does not load on Linux systems, due to case sensitivity.
- Improve output channel messaging.
- Use default language extension for untitled documents.
- Assume new/untitled docs are @ root path.
- Restore non-native trailing whitespace trims on inactive editor documents (save all).
- Use native
editor.action.trimTrailingWhitespace.
- Use new
TextEdit.setEndOfLineAPI. - Preserve selections on file save.
- Demote warning message to output channel.
- Save/restore selections (cursors) during file save.
- Set EOL just before file save.
- Automatically display property values when editing
.editorconfig(#109). - Add recommended extensions (#110).
- Feature: Support
.editorconfigauto-complete (#99).
- [Use
onWillSaveTextDocument]#80, fixes#76and#79(thanks@SamVerschueren)!
- Compile project before publish.
- Take
detectIndentationinto account, fixes#51and#52(thanks@SamVerschueren)!
- Fix
indent_size(thanks@jedmao)!
- Support
end_of_line(thanks@jedmao)!
- Fix applying transformations to .editorconfig itself
(thanks
@SamVerschueren)! - Fix marketplace icon
(thanks
@SamVerschueren)!
- Fix defaults
(thanks
@SamVerschueren)!
- Support
trim_trailing_whitespace(thanks@torarvid)! - Fix text editor defaults (thanks
@SamVerschueren)! - Fix multiple execution times (thanks
@SamVerschueren)!
- Forked from
Microsoft/vscode-editorconfig.