vim-styled-components
vim-styled-components copied to clipboard
Vim bundle for http://styled-components.com based javascript files.
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...
 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...
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. 
It appears to not be highlighting inside of functions i.e.:  Or when cast to a variable: ...
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  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...