You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 6, 2018. It is now read-only.
in insert mode,
deletewill remove the character following the cursor, but.doesn't replay it correctly. Demonstration of the problem:1234in the editor and the cursor is on 2iabc<delete><esc>– you should have1abc34in the editor and the cursor onc1.– you should haveabcabc34in the text editor, with cursor on the firstc(the original1would get eaten by the repeateddelete)But what you actually get is
ab1abc34with cursor on the firstb.The problem is in
TransactionBundlerininput.coffeewhich treats thedeleteas abackspace.