Hi,
When editing Markdown,I want to enter âspaceâ+âspaceâ+âline feedâ by âShift + Enterâ command.
For example, we can do that in Atom with as follows;
Customizing example in Atom
init.coffee:
atom.commands.add âatom-text-editorâ,
âinsert-double-backspace-crâ: (event) ->
editor = @getModel()
editor.insertText(" \n") <<== â(space)(space)\nâ
keymap.cson:
âatom-workspace atom-text-editor:not([mini])â:
âshift-enterâ: âinsert-double-backspace-crâ
I canât find the way to customize it in Inkdrop as same as Atom.
Is it possible in Inkdrop?
Thanks.