braco
braco
Why not put the activation icon in the context menu on textareas? (right-click, ctrl-click, etc) Could eliminate the need for the toolbar icon, which seems out of place.
Couldn't figure this out, but switching packages to csvtojson seemed to resolve for me ``` const parser = csvReader({ columns: true }); const reader = fs.createReadStream(...).pipe(parser); while (1) { reader.pause()...
This would be nice for debugging in large files. I guess this format would make the most sense: ``` parser.on('data', (line, number) => { ... }) ```
``` ERROR in ./~/react-native-router/~/react-native/Libraries/react-native/react-native.js Module build failed: SyntaxError: /private/var/www/ditto/node_modules/react-native-router/node_modules/react-native/Libraries/react-native/react-native.js: Line 20: Did you mean "react"? 18 | // var ReactNative = {...require('React'), /* additions */} 19 | // > 20...
Bash is very extensible, even in configuration: alias foo='.....' how would this work under Jean?
Unix systems are inherently multi-user, we should not assume this is being installed on a primary machine, or that you would want to clutter up other user's prompts
Anyone successfully loaded Google's maps API and js only when the component is being rendered?
It seems reasonable to expect this to work: ``` render foo("..")#id.class ``` given the similar format in ``` call dialog("Blade is awesome")#foobar.foo.bar ``` I imagine it would attach #id.class to...
Is there any chance to line numbers in the validation errors? Can't use as a linter presently.