Marek Kaczkowski

Results 12 comments of Marek Kaczkowski

Same on Catalina 10.15.7

It would be nice to get [powerline](https://github.com/powerline/powerline) support :)

Hey, its not related with yarn. Check my post for test cases: https://forum.quasar-framework.org/topic/4799/quasar-app-extension-serve-is-missing-error

@satishk88 unfortunately not. I abandoned this feature as it wasn't a must-have.

Same for `[email protected]`. `Edit` TL;DR Do not mix `loader: { test: ... }` with `hbs!` Running the template through the loader twice was a root cause: https://github.com/pcardune/handlebars-loader/issues/61#issuecomment-146933684 fixed my issue.

+1, or OS specific. Ex. just installed an "Input" codding font (http://input.fontbureau.com/). On OSX my settings are font_size: 14 and no antialias, on Windows I need to change settings to:...

`v-html` breaks Brace instance :cry: ```javascript import Vue from 'vue' import Brace from 'vue-bulma-brace' export default { components: { Brace }, data () { return { jsonDetails: '' } },...

Yes! Thanks @rankam, works like a charm :sparkles: I had to modify source a bit cuz there is a hardcoded id `'vue-bulma-editor'` here is pull req https://github.com/vue-bulma/brace/pull/5 :+1:

Fixed with `HttpsProxyAgent` and additional configuration for `node-fetch`: `extensions.js:CompleteProvider.prototype.provideCompletionItems` ``` fetch('http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=' + getUserKeyIn(lineText, position), { agent: process.env.HTTP_PROXY != '' ? new HttpsProxyAgent(process.env.HTTP_PROXY) : null, timeout: 10000 // It would be...