vim-styled-components icon indicating copy to clipboard operation
vim-styled-components copied to clipboard

Vim bundle for http://styled-components.com based javascript files.

Results 9 vim-styled-components issues
Sort by recently updated
recently updated
newest added

Minimal reproducible testcase: ```javascript import styled from 'styled-components' const media = {} const Container = styled.main` padding: 10px; transform: translateX(var(--menu-${({ state }) => state}-width)); ${media.md` transform: translateX(0); `} ` const...

Dear community. Thanks for bearing me while I tried my best to maintain this plugin as long as I did. Unfortunately I am not able to focus on this project...

![Screenshot (49)](https://user-images.githubusercontent.com/23452413/57171324-aa9a6a00-6e56-11e9-8a31-1eaf4b67f124.png) I am experiencing the following error when I open file with vim-styled-components installed. I am unsure what is causing an unable to find any further information that might...

waiting for feedback

It has come to my attention that this plugin, while very awesome, interferes with the indentation of JSX expressions that exist outside of a template tag. The plugins I have...

It definitely happens when using vim-styled-componets. ![image](https://user-images.githubusercontent.com/21261211/72876006-46655200-3cd4-11ea-8009-1553736135bd.png)

It appears to not be highlighting inside of functions i.e.: ![image 2019-02-07 at 3 50 43 am](https://user-images.githubusercontent.com/1819/52403167-b3fc7c00-2a8b-11e9-8a4c-591e0d7ee6c6.png) Or when cast to a variable: ![image 2019-02-07 at 3 54 09 am](https://user-images.githubusercontent.com/1819/52403338-1a819a00-2a8c-11e9-8c78-526b2df8766b.png)...

syntax
waiting for feedback

this plugin supports both the `styled.div` and `styled('div')` syntax in .js files, but it appears that only the latter is supported in .tsx files ![Screen Shot 2019-06-25 at 1 00...

syntax
waiting for feedback

See #36 for further discussion around this topic. [luochen1990/rainbow](https://github.com/luochen1990/rainbow) injects styles on runtime to highlight matching parenthesis and/or blocks in the same colors. This leads to issues with static highlighting,...

Syntax highlighting breaks and reverts to simple string coloration when writing code like this: ```typescript export const backgroundColorStyles = css` background-color: ${({ backgroundColor }) => backgroundColor}; `; ``` I've been...