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
Atom doesn't allow creating a cursor on top of another cursor, so multi-cursor-plus creates the new cursor at the beginning of the file and moves it to the same position as the current cursor.
If there is already a cursor at the beginning of the file, the new cursor is created at the end of the file instead.
If there is a cursor at the beginning and end of the file, creating a new cursor doesn't work correctly.
Every line and column in the buffer could be looped through to find a position without an existing cursor, but this could be horrible for performance (every position needs to be checked against every existing cursor). This might work well enough, but some other solution would probably be better.
The text was updated successfully, but these errors were encountered:
Atom doesn't allow creating a cursor on top of another cursor, so
multi-cursor-plus
creates the new cursor at the beginning of the file and moves it to the same position as the current cursor.If there is already a cursor at the beginning of the file, the new cursor is created at the end of the file instead.
If there is a cursor at the beginning and end of the file, creating a new cursor doesn't work correctly.
Every line and column in the buffer could be looped through to find a position without an existing cursor, but this could be horrible for performance (every position needs to be checked against every existing cursor). This might work well enough, but some other solution would probably be better.
The text was updated successfully, but these errors were encountered: