Page 1 of 1
vi:<drop> doesn't survive Refresh
Posted: 13 Feb 2023 12:49
by yusef88
when drop item to this button goto "vi:<drop>" and refresh list, the list become empty.
the paper folder with explicit save only keeps dropped items after Refresh
so why is the difference between them
Re: vi:<drop> doesn't survive Refresh
Posted: 14 Feb 2023 08:41
by admin
button
goto "vi:<drop>"; ... interesting usage!

But of course it does not survive a refresh. It's logical, isn't it?
Re: vi:<drop> doesn't survive Refresh
Posted: 14 Feb 2023 15:58
by yusef88
I asked because of the similarity between them. the Help says: "Think of Virtual Folders as Paper Folders without the paper." hence came the question.
anyway, to always open <drop> in a dedicated tab
Code: Select all
end !"<drop>";
if not regexmatches(get("tabs", "<crlf>"), "^vi:\<drop\>$") {tab("new", "vi:<drop>")}
goto "vi:<drop>", 1;#250
Re: vi:<drop> doesn't survive Refresh
Posted: 14 Feb 2023 16:13
by admin
"without the paper" also means "without the memory"

Re: vi:<drop> doesn't survive Refresh
Posted: 14 Feb 2023 16:49
by yusef88
OK. thanks for the explanation
