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
When overtyping, if you make a mistake and hit backspace, the editor will delete the character you just typed, and in doing this it will remove one character from the line. This is similar to pasting multiple characters without "hard mode" paste enabled, which adds characters instead of overwriting them.
My request is to have an option to "hard backspace", which, when enabled, if you hit backspace, the editor would replace the previous character (or selection) with a space (or spaces if in a selection) and move the carriage back.
Example of how it is today (spaces replaced to _ for readability and the carriage is represented by |):
################################################################
######_I'm_writting_on_this_line_and_made_a_mistakee_###########
*puts the cursor below*
################################################################
######_I'm_writting_on_this_line_and_made_a_mistakee|_###########
*hits backspace*
################################################################
######_I'm_writting_on_this_line_and_made_a_mistake_###########
*now my line has one fewer character :(*
If the requested "hard backspace mode" is enabled the sequence would go like this
################################################################
######_I'm_writting_on_this_line_and_made_a_mistakee_###########
*puts the cursor below*
################################################################
######_I'm_writting_on_this_line_and_made_a_mistakee|_###########
*hits backspace*
################################################################
######_I'm_writting_on_this_line_and_made_a_mistake__###########
*note extra space instead of the second e in the last word*
The text was updated successfully, but these errors were encountered:
When overtyping, if you make a mistake and hit backspace, the editor will delete the character you just typed, and in doing this it will remove one character from the line. This is similar to pasting multiple characters without "hard mode" paste enabled, which adds characters instead of overwriting them.
My request is to have an option to "hard backspace", which, when enabled, if you hit backspace, the editor would replace the previous character (or selection) with a space (or spaces if in a selection) and move the carriage back.
Example of how it is today (spaces replaced to _ for readability and the carriage is represented by |):
If the requested "hard backspace mode" is enabled the sequence would go like this
The text was updated successfully, but these errors were encountered: