Home

tailwind-ctp-intellisense @8eaa5c9326deaae3485ae3aa7015bb2d61468ec9 - 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
import { window, Uri, Range, Position } from 'vscode'
import { NotificationEmitter } from './emitter'

export function registerConfigErrorHandler(emitter: NotificationEmitter) {
  emitter.on('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)
        ),
      })
    }
  })
}