Home

tailwind-ctp-intellisense @35ec1b17224ed778d450e0eaa4e95cfecdcec711 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
drwxrwxrwx
36 B
media/
drwxrwxrwx
206 B
src/
drwxrwxrwx
52 B
syntaxes/
drwxrwxrwx
53 B
tests/
-rw-r--r--
25 B
.gitignore
-rwxr-xr-x
126 B
.vscodeignore
-rw-r--r--
3.2 kB
CHANGELOG.md
-rw-r--r--
3.3 kB
README.md
-rwxr-xr-x
252 kB
package-lock.json
-rwxr-xr-x
3.4 kB
package.json
-rwxr-xr-x
238 B
tsconfig.json

Tailwind CSS IntelliSense

Tailwind CSS class name completion for VS Code

Get it from the VS Code Marketplace →

HTML autocompletion

Requirements

This extension requires:

Features

Tailwind CSS IntelliSense uses your projects Tailwind installation and configuration to provide suggestions as you type.

It also includes features that improve the overall Tailwind experience, including improved syntax highlighting, and CSS previews.

HTML (including Vue, JSX, PHP etc.)

CSS

Examples

Class name suggestions, including support for Emmet syntax

HTML autocompletion

CSS preview when hovering over class names

HTML hover preview

Suggestions when using @apply and config helpers

CSS autocompletion

Improves syntax highlighting when using @apply and config helpers

Before:

CSS syntax highlighting before

After:

CSS syntax highlighting after

Settings

tailwindCSS.includeLanguages

This setting allows you to add additional language support. The key of each entry is the new language ID and the value is any one of the extensions built-in languages, depending on how you want the new language to be treated (e.g. html, css, or javascript):

{
  "tailwindCSS.includeLanguages": {
    "plaintext": "html"
  }
}

tailwindcss.emmetCompletions

Enable completions when using Emmet-style syntax, for example div.bg-red-500.uppercase. Default: false

{
  "tailwindCSS.emmetCompletions": true
}