Skip to content
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

[Feature Request] Navigation #716

Closed
domoenergytics opened this issue Aug 12, 2018 · 13 comments
Closed

[Feature Request] Navigation #716

domoenergytics opened this issue Aug 12, 2018 · 13 comments
Labels
enhancement Feature requests and code enhancements

Comments

@domoenergytics
Copy link

Often, when I'm writing a note, I jump to another note to do a little update. Then I want to go back to the first note. I have not found an easy way. Would it be possible to add navigation keys back and forward, just like in a browser?

Another navigation feature, after searching for un note, the notebook is displayed. I would like to be able to click on this name displayed to reach the notebook.

@stale
Copy link

stale bot commented Sep 22, 2019

Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as "backlog" and I will leave it open. Thank you for your contributions.

@stale stale bot added the stale An issue that hasn't been active for a while... label Sep 22, 2019
@gbirke
Copy link

gbirke commented Sep 23, 2019

I would still like to have this feature.

@stale stale bot removed the stale An issue that hasn't been active for a while... label Sep 23, 2019
@0vermind
Copy link

me too. It is very difficult to navigate back and forth without a breadcrumb menu. All GUI should have one.

@Ruco
Copy link

Ruco commented Nov 25, 2019

I would settle for a key binding. For example ALT+left to go back. (And possibly ALT+right to go forward).
So there wouldn't need to be any GUI changes (yet).

@AFewMistakesAgo
Copy link

+1 for easy navigation back and forth through history of notes visited in current session, at least in desktop version.

@stale
Copy link

stale bot commented Feb 27, 2020

Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may comment on the issue and I will leave it open. Thank you for your contributions.

@stale stale bot added the stale An issue that hasn't been active for a while... label Feb 27, 2020
@mahibi
Copy link

mahibi commented Feb 28, 2020

.

@stale stale bot removed the stale An issue that hasn't been active for a while... label Feb 28, 2020
@0vermind
Copy link

Unfortunately, the issue did not get the attention it deserves by the community and the devs. This is a key feature for heavy users like me. I don't want so sound disrespectful Laurent. I'm using Joplin for some year now but ZIM wiki, (a 20 years old software I moved from) is still more navigable and userfriendly (i.e wysiwyg editor etc...) than Joplin. I hope Joplin will improve and catch up!

@Rishabh-malhotraa
Copy link
Contributor

Unfortunately, the issue did not get the attention it deserves by the community and the devs. This is a key feature for heavy users like me. I don't want so sound disrespectful Laurent. I'm using Joplin for some year now but ZIM wiki, (a 20 years old software I moved from) is still more navigable and userfriendly (i.e wysiwyg editor etc...) than Joplin. I hope Joplin will improve and catch up!

@0vermind there is an open PR for that #2563 hopefully it will get approved and this feature will be added soon

@stale
Copy link

stale bot commented Apr 15, 2020

Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may comment on the issue and I will leave it open. Thank you for your contributions.

@stale stale bot added the stale An issue that hasn't been active for a while... label Apr 15, 2020
@domoenergytics
Copy link
Author

I'm still waiting for these features...

@stale stale bot removed the stale An issue that hasn't been active for a while... label Apr 15, 2020
@laurent22
Copy link
Owner

This has been implemented in #2819

@wtwver
Copy link

wtwver commented Mar 19, 2021

I would settle for a key binding. For example ALT+left to go back. (And possibly ALT+right to go forward).
So there wouldn't need to be any GUI changes (yet).

Help -> Toggle developments tools -> Paste the js code into the console

document.onkeydown = checkKey;

function checkKey(e) {
    var pressed = "";
    if(e.altKey && e.keyCode==37 ){
	    console.log("back");
	    document.querySelector("#react-root > div > div > div.resizableLayoutItem.rli-root > div.resizableLayoutItem.rli-editor > div > div > div > div:nth-child(2) > div > div:nth-child(1) > div > div:nth-child(1) > a:nth-child(1)").click();
    } else if(e.altKey && e.keyCode==39 ){
	    console.log("forward");
	    document.querySelector("#react-root > div > div > div.resizableLayoutItem.rli-root > div.resizableLayoutItem.rli-editor > div > div > div > div:nth-child(2) > div > div:nth-child(1) > div > div:nth-child(1) > a:nth-child(2)").click();
    } 
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Feature requests and code enhancements
Projects
None yet
Development

No branches or pull requests

9 participants