Erik Martín Jordán

Results 3 issues of Erik Martín Jordán

· Solves onTab warnings. onTab is deprecated and after key pressing it, it doesn't indent the text. · Solves line indention on selecting text adding spaces at the start of...

Inlcuding the `draft-js-markdown-shortcuts-plugin` is blocking key binding for the tab key. Example: ```jsx const keyDown = (e) => { if(e.key === 'Tab'){ console.log('I never get here...'); } console.log('Other keys are...

I'm building an Electron application, which launches an Express server in the background and sends back a stream as a response. Sample code: ```javascript const express = require('express'); Stream =...