-
Notifications
You must be signed in to change notification settings - Fork 121
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
Add support for "showfields" in entries #159
base: master
Are you sure you want to change the base?
Conversation
@@ -19,6 +19,10 @@ USERNAME_field='user' | |||
AUTOTYPE_field='autotype' | |||
OTPmethod_field='otp_method' | |||
|
|||
# Display these fields with entries. | |||
# NOTE: no default here, handled in code. | |||
SHOWFIELDS_field='showfields' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo? Shouldn't that be show_fields
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it's the name in the entry, i.e. you can have showfields: autotype
to only get "autotype" in the dialog.
show_fields
is the var that rofi-pass uses to display them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the documentation accordingly, as it makes it easier to grasp the concept 😉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do - waiting for some approval that this is good in general first.
It would go to README.md then, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, README.md is the documentation.
Fixes #158.