-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[help][feature request] Moving within a large item #22
Comments
Implementing a vim-like '/' search feels like it would require a lot of work, so I haven't gotten around to it yet. For now I've just been using the browsers own ctrl-f search which does most of the things we want... But there is a catch with it though; you'll lose cursor focus if it can't find the word you are searching for hehe.. You'll have to spam ESC a couple of times to regain focus again when that happens. Most of the vim-like cursor movment have to be written from scratch and take a long time to implement. You have to parse the text yourself and account for edge cases such as html tags and non-ascii characters, etc. The ones that are implemented right now, such as 'w' and 'e', are the ones that have been requested in the past or that I frequently use. But we can add new ones upon request. The best way for navigating a visible wall-text, IMO, is to implement something like Vim-EasyMotion that lets you jump to anywhere in the text. But again that feels like it would require some work so I haven't gone around to it yet. Another weakness is that you can't navigate inside notes just as easily as you can with bullet names. Fixing this requires a rewrite on how the cursor movement works and how the commands parses the text. |
Okay, yeah I was worried that this would be a lot of work. I am ambivalent as to the correct solution. I really like the As to the Thanks! |
If I have an item that is very long, like a paragraph, what is the easiest way to move around in it? All I can find so far are very inefficient ways:
w
,e
, etc to move word by word, or even20w
all are too imprecisef
to find the first letter, but then I have to do it over and over to get to the word I want/
search is what I would use in vim, but all it does is narrow down the nodes on the page to ones that contain that word. And then the cursor still does not go to the word that was searched, it simply highlights it (workflowy's default behavior)j
,k
move item by item, so skip over lines within an itemA
,^
,0
,$
, etc all move to the very beginning or end of the item (basically soft line wrap)Am I missing something? If not, could this be added as a feature? Some way to search within an item (similar to
f
andt
) to move the cursor, but with greater control than just a single letter.Thanks!
The text was updated successfully, but these errors were encountered: