vim-css-to-inline icon indicating copy to clipboard operation
vim-css-to-inline copied to clipboard

It only detect single quote `'` to be trimmed

Open krehwell opened this issue 2 years ago • 0 comments

hey, first of all, great plugin.

is that possible to get rid to double quote as well? ex:

{
    paddingLeft: "1rem"
}

pressing fis will make it:

{
    padding-left: "1rem"
}

expected result:

{
    padding-left: 1rem
}

krehwell avatar Dec 25 '21 06:12 krehwell