https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
diff --git a/src/lsp/providers/diagnosticsProvider.ts b/src/lsp/providers/diagnosticsProvider.ts index 5945837bd639a4360bd03f61298581529aba7f7d..85de8b570e727b177df40bfe7d97150d9b967471 100644 --- a/src/lsp/providers/diagnosticsProvider.ts +++ b/src/lsp/providers/diagnosticsProvider.ts @@ -360,7 +360,10 @@ let firstValidKey = Object.keys(value).find((key) => isValid(value[key]) ) if (firstValidKey) { - message += ` Did you mean '${stitch([...keys, firstValidKey])}'?` + message += ` Did you mean something like '${stitch([ + ...keys, + firstValidKey, + ])}'?` } } }