Home

tailwind-ctp-intellisense @0f9ce9385765073de017207f035f2ac04e1bb1f4 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / src / lib / registerConfigErrorHandler.ts
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { LanguageClient } from 'vscode-languageclient'
import { window, Uri, Range, Position } from 'vscode'

export function registerConfigErrorHandler(client: LanguageClient) {
  client.onNotification(
    'tailwindcss/configError',
    async ({ message, file, line }) => {
      const actions: string[] = file ? ['View'] : []
      const action = await window.showErrorMessage(
        `Tailwind CSS: ${message}`,
        ...actions
      )
      if (action === 'View') {
        window.showTextDocument(Uri.file(file), {
          selection: new Range(
            new Position(line - 1, 0),
            new Position(line - 1, 0)
          ),
        })
      }
    }
  )
}