Skip to content

Commit

Permalink
Update record fields completion image, enable record fields completio…
Browse files Browse the repository at this point in the history
…n by default
  • Loading branch information
halohalospecial committed Apr 16, 2018
1 parent 860e22f commit b7b5240
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 8.1.0
* Completion of record fields is now enabled by default.

## 8.0.0
* Improve typing performance.
* Greatly improve `Go to Definition` / `Hyperclick` performance (#115). Thanks to @smucode for reporting and debugging!
Expand Down
2 changes: 1 addition & 1 deletion elm/Indexer.elm
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ update msg model =
)

ConfigChanged config ->
( { model | config = config }
( { model | config = config, activeFile = Nothing }
, Cmd.none
)

Expand Down
Binary file modified images/autocomplete-record-fields.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export default {
recordFieldsCompletionEnabled: {
title: 'Enable completion of record fields',
type: 'boolean',
default: false,
default: true,
order: 19,
},

Expand Down

0 comments on commit b7b5240

Please sign in to comment.