Skip to content

Commit

Permalink
Make UI hints disabled by default (#1932)
Browse files Browse the repository at this point in the history
Fixes
https://linear.app/sourcegraph/issue/CODY-3022/remove-the-edit-hints

## Test plan

1. Select multiline text in IntelliJ
2. Make sure edit hint is not displayed
  • Loading branch information
pkukielka authored Jul 22, 2024
1 parent 3ce3836 commit eb2d666
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data class CodyApplicationSettings(
var isCustomAutocompleteColorEnabled: Boolean = false,
var customAutocompleteColor: Int? = null,
var isLookupAutocompleteEnabled: Boolean = true,
var isCodyUIHintsEnabled: Boolean = true,
var isCodyUIHintsEnabled: Boolean = false,
var blacklistedLanguageIds: List<String> = listOf(),
var isOnboardingGuidanceDismissed: Boolean = false,
var shouldAcceptNonTrustedCertificatesAutomatically: Boolean = false,
Expand Down

0 comments on commit eb2d666

Please sign in to comment.