logseq-plugin-markdown-table icon indicating copy to clipboard operation
logseq-plugin-markdown-table copied to clipboard

[Enhancement] New row with shortcut + Cursor in first cell on open

Open jkrude opened this issue 2 years ago • 0 comments

First of all thank you for this very useful plugin. To further improve UX, I would like to suggest two enhancements:

  1. Add new line below with shortcut Strg/Cmd + Enter
  • This could be relatively easily added here.
if (event.key == 'Enter' && event.ctrlKey){
    editor.edit('insert-row-below')
}
  1. Focus (set cursor in) the top left cell when the pop-up opens such that the user can directly start typing.

jkrude avatar Jul 07 '22 13:07 jkrude