Jayphen

Results 17 comments of Jayphen

I have the same problem with all state resetting whenever I load the app on MacOS (10.14)

Perhaps [Sneak](https://github.com/justinmk/vim-sneak) would be an easier thing to implement than easymotion. It's essentially `f` but finds the next occurrence of 2 chars instead of 1. Not as direct as easymotion,...

Is this still being developed actively? The primary alternative (VSCodeVim/Vim) is almost unusably slow in comparison to this plugin, but amVim has many missing features.

`zsh 5.4.1 (x86_64-apple-darwin17.0.0)` macOS 10.13 (beta)

@praveshjain It redirects to an URL containing the token for a moment before redirecting to the success message.

This is old, but @groovy9 maybe this will help: I have the following in coc-settings.json: ``` "eslint.filetypes": ["javascript", "typescript", "svelte"], "coc.preferences.formatOnSaveFiletypes": [ "javascript", "typescript", "typescriptreact", "json", "javascriptreact", "typescript.tsx", "graphql", "svelte"...

This is my solution for dynamic styling — just using CSS. This is nothing groundbreaking, perhaps there's some reason this isn't the recommended way? ```jsx const styles = css` .button...

@jquense What do you mean by namespace conflicts? If `styles.button` returns `Button__generated_style_whatever` as the className string, the above CSS would compile to ```css .Button__generated_style_whatever { color: red } .Button__generated_style_whatever[data-bigly] {...

Here's another example, illustrating how data attributes offer a lot in terms of dynamic styling ```jsx const styles = css` .notice { color: blue; &[data-alert] { color: red; } &[data-alert~='normal']...

Astroturf doesn't support this afaik. You will have to define variables in CSS (using postCSS or SASS) or use css custom properties