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
- interactively
tablist-edit-filter, put something like name == tmp there
- name it
qaz with tablist-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
- interactively
tablist-edit-filter, put something like name == opt there
- name it
wsx with tablist-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 only
I use tablist-20200427.2205 from MELPA.
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 == tmpthereqazwithtablist-name-current-filteras a result,
tablist-named-filteris((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 == opttherewsxwithtablist-name-current-filterexpected result:
(tablist-filter-names)returns("qaz wsx")actual result
(tablist-filter-names)returns("wsx")non-interactive
tablist-put-named-filterworks the same way - it stores the last filter onlyI use
tablist-20200427.2205from MELPA.