Skip to content

A nvim-cmp plugin for completing Datastar `data-*` attributes

License

Notifications You must be signed in to change notification settings

YuryKL/cmp-datastar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cmp-datastar

Neovim completion source for Datastar data-* attributes.

Features

  • Provides completions for all Data* attributes
  • Context-aware completions for data-on events
  • Snippet support for attribute values
  • Only triggers within HTML tag attributes
  • Default rocket icon (🚀) for better visibility

Installation

Using lazy.nvim

{
    "hrsh7th/nvim-cmp",
    dependencies = {
        "YuryKL/cmp-datastar"
    },
    config = function()
        local cmp = require('cmp')
        cmp.setup({
            -- Required: Add cmp-datastar as a source
            sources = {
                { name = "cmp-datastar" }
            },
            -- Optional: Customize the completion menu icon
            formatting = {
                format = function(entry, vim_item)
                    if entry.source.name == 'cmp-datastar' then
                        vim_item.kind = '🚀'  -- Change this to text if you prefer
                    end
                    return vim_item
                end,
            }
        })
    end
}
use {
    'hrsh7th/nvim-cmp',
    requires = {
        'YuryKL/cmp-datastar'
    },
    config = function()
        local cmp = require('cmp')
        cmp.setup({
            sources = {
                { name = "cmp-datastar" }
            }
        })
    end
}

Usage

In an HTML file, start typing a Datastar attribute:

  • data- - Shows all available Datastar attributes
  • data-on- - Shows available events (click, keydown, etc.)
  • data-on-click - Completes with snippet for expression

Contributing

Pull requests are welcome!

License

MIT

About

A nvim-cmp plugin for completing Datastar `data-*` attributes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages