We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sorry if I do it the wrong way, but documentation isn't clear here.
What I'm trying to do is to add multiple filters interactively
tablist-edit-filter
name == tmp
qaz
tablist-name-current-filter
tablist-named-filter
((navigel-tablist-mode ("qaz" == "name" "tmp")))
so everything looks fine, and (tablist-filter-names) returns ("qaz")
(tablist-filter-names)
("qaz")
now I'm trying to add another filter
name == opt
wsx
expected result:
(tablist-filter-names) returns ("qaz wsx")
("qaz wsx")
actual result (tablist-filter-names) returns ("wsx")
("wsx")
non-interactive tablist-put-named-filter works the same way - it stores the last filter only
tablist-put-named-filter
I use tablist-20200427.2205 from MELPA.
tablist-20200427.2205
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sorry if I do it the wrong way, but documentation isn't clear here.
What I'm trying to do is to add multiple filters interactively
tablist-edit-filter
, put something likename == tmp
thereqaz
withtablist-name-current-filter
as a result,
tablist-named-filter
is((navigel-tablist-mode ("qaz" == "name" "tmp")))
so everything looks fine, and
(tablist-filter-names)
returns("qaz")
now I'm trying to add another filter
tablist-edit-filter
, put something likename == opt
therewsx
withtablist-name-current-filter
expected result:
(tablist-filter-names)
returns("qaz wsx")
actual result
(tablist-filter-names)
returns("wsx")
non-interactive
tablist-put-named-filter
works the same way - it stores the last filter onlyI use
tablist-20200427.2205
from MELPA.The text was updated successfully, but these errors were encountered: