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

Ctrl+S hotkey to save. #25

Open
LiamKarlMitchell opened this issue Mar 17, 2021 · 2 comments
Open

Ctrl+S hotkey to save. #25

LiamKarlMitchell opened this issue Mar 17, 2021 · 2 comments

Comments

@LiamKarlMitchell
Copy link

No description provided.

@grsky360
Copy link

grsky360 commented Apr 20, 2021

You could take a look at #26
Or simple add script by TamperMonkey with this
@jpillora please review it, and merge it if no problem

    document.addEventListener('keydown', function(e) {
        if (e.keyCode == 83 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)){
          e.preventDefault();
          window.root.save();
        }
      });

@LiamKarlMitchell
Copy link
Author

Also clicking save (e.g. on an Invoice) should keep you on the page, not take you back out to the list view.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants