-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Cannot use tab to jump to next field in some single-line fields #11785
Comments
It is not uncommon for applications not to allow use of Tab key to insert a Tab character, even with multi-line text. I think it would be suitable for Tab to behave the same (move to next field) in single-line and multi-line fields. Alternatively, consider adding default or custom shortcuts to for moving forward and backward through the fields. Note that <Shift + Tab> moves backward, regardless of the current field type but forward navigation using is interrupted by the multi-line fields. |
The only real multi-line fields would be comment and abstract, right? These are usually on their own tab, so it's not important to have |
Good point, but remember that standard fields can be configured as multi-line in preferences and that non-standard fields can be added and configured as multi-line. |
Hi, I would like to work on this issue. Can I be assigned to this issue? Thanks! |
Welcome to the vibrant world of open-source development with JabRef! Newcomers, we're excited to have you on board. Start by exploring our Contributing guidelines, and don't forget to check out our workspace setup guidelines to get started smoothly. In case you encounter failing tests during development, please check our developer FAQs! Having any questions or issues? Feel free to ask here on GitHub. Need help setting up your local workspace? Join the conversation on JabRef's Gitter chat. And don't hesitate to open a (draft) pull request early on to show the direction it is heading towards. This way, you will receive valuable feedback. Happy coding! 🚀 |
JabRef version
5.15 (latest release)
Operating system
Windows
Details on version and operating system
No response
Checked with the latest development build (copy version output from About dialog)
Steps to reproduce the behaviour
Tab
.Empty space is inserted instead of jumping to the next field.
Appendix
The reason is that https://github.com/JabRef/jabref/blob/main/src/main/java/org/jabref/gui/fieldeditors/EditorTextArea.java is used over https://github.com/JabRef/jabref/blob/main/src/main/java/org/jabref/gui/fieldeditors/EditorTextField.java in some fields that sholud be normal single-line fields: Url, Identifier, Owner, Issn
The text was updated successfully, but these errors were encountered: