aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/mode_visual_edit.coffee
AgeCommit message (Collapse)Author
2015-01-23Visual/edit modes: develop edit mode.Stephen Blott
- implement "i", "a". - fix "w" for edit mode. - try out "e" for enter edit mode. - initial implementation "o", "O" - Suppress backspace and delete. - Scroll in text areas.
2015-01-22Visual/edit modes: revert to slow "o".Stephen Blott
There are cases where the faster approach gets the wrong answer.
2015-01-22Visual/edit modes: faster "o" implementation.Stephen Blott
2015-01-22Visual/edit modes: further development.Stephen Blott
- Better abstraction. - Add HUD message on yank. - Require initial selection for visual mode. - Try to start with a visible selection. - Scroll the active end of the selection into view (with smooth scrolling, if enabled).
2015-01-22Visual/edit modes: initial "w" and "W" commands.Stephen Blott
2015-01-22Visual/edit modes: continued development...Stephen Blott
- Some better comments. - More commands. - The "o" command for visual mode (the implementation is poor, there has to be a better way).
2015-01-22Visual/edit modes: consolidate both modes in a single file.Stephen Blott
These modes turn out to be almost identical. So they're better off in a single file.