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
Yes, this is known limitation and can't find solution by now. visual-blockwise mode is achieved by Atom's multiple-selection feature.
Selection use marker under the hood.
When you do ctrl-v then G it try to add selection and same number of marker against ALL LINES OF BUFFER.
When you add many marker in Atom, it get very slow almost freeze, depending of your computer power.
So if you don't want editor freeze by your old finger memory, disable it to save your time.
# This work, any command not exist is OK to make keystroke useless.
'atom-text-editor.vim-mode-plus.visual-mode.blockwise':
'G': 'DONT_MOVE_TO_LAST_LINE'
The text was updated successfully, but these errors were encountered:
Yes, this is known limitation and can't find solution by now.
visual-blockwise
mode is achieved by Atom's multiple-selection feature.Selection use
marker
under the hood.When you do
ctrl-v
thenG
it try to add selection and same number of marker against ALL LINES OF BUFFER.When you add many marker in Atom, it get very slow almost freeze, depending of your computer power.
So if you don't want editor freeze by your old finger memory, disable it to save your time.
The text was updated successfully, but these errors were encountered: