[tw5] Re: How can I activate the vim mode using the CodeMirror plugin with Tiddlywiki?

2020-07-27 Thread Rafael Oliveira
Hi bimias, thanks for the reply... I already use the firenvim and it's a great tool :) But in this case I'd like to use a client solution just so I can access the vim mode for a TiddlyWiki page that's public on the internet. Even if it means having a vim mode with limitations comparing to the r

[tw5] Re: How to use the Vim mode in Code-Mirror?

2020-07-27 Thread Rafael Oliveira
Mark, I'm actually struggling to find the .tid file that I can use on CodeMirror to activate the Vim mode... My issue is this one: https://groups.google.com/forum/#!topic/tiddlywiki/UFW-3-eTFZU Could you share the tiddler file that you're using for your vim mode? On the official page I can onl

[tw5] Re: How can I activate the vim mode using the CodeMirror plugin with Tiddlywiki?

2020-07-27 Thread bimlas
Instead of CodeMirror, you can even use NeoVim itself, which is not just an emulator, but literally a Vim with your own config: https://github.com/glacambre/firenvim/ muynars...@gmail.com a következőt írta (2020. július 28., kedd, 8:20:07 UTC+2): > Well, after two hours searching for a solutio

[tw5] Re: How to get the intersection of two lists in one filterexpression.

2020-07-27 Thread Saq Imtiaz
> > It is necessary to have this in one expression, because I need to define > an emptyMessage. > @Jan Do note that the emptyMessage can be as complex as you need it to be. Multiple lists, set widgets etc, all are possible. For legibility just assign it to a macro. -- You received this mes

[tw5] Re: Presenting: Whitespace, a negative-spacious, webapp-nostalgic theme

2020-07-27 Thread TW Tones
JD I just reviewed your theme again and I really is great. The only thing I notices was when the side bar is open and you click on a card, you must click the word eg "Tools" to open the card. The way the cards look though one would expect clicking anywhere on that line, except where the buttons

Re: [tw5] Re: Presenting: Whitespace, a negative-spacious, webapp-nostalgic theme

2020-07-27 Thread TW Tones
Just loaded for me Regards Tony On Tuesday, July 28, 2020 at 3:26:58 PM UTC+10, danraymond wrote: > > JD; > > Thank you. Seems whitespace tiddlyspot not loading at moment. Will try > later. > > > On Monday, July 27, 2020 at 5:45:44 PM UTC+10, JD wrote: >> >> Hello again Danraymond, >> >> I've fi

[tw5] Re: Static html book created with TiddlyWiki

2020-07-27 Thread TW Tones
David, I just reviewed your book again, Since I do not speak Spanish I applied the google translator to English. It seems to translate very well, perhaps you would know if its good or not with your familiarity with the content and both languages. Of interest is how it actually changes visible

Re: [tw5] Re: Presenting: Whitespace, a negative-spacious, webapp-nostalgic theme

2020-07-27 Thread danraymond
JD; Thank you. Seems whitespace tiddlyspot not loading at moment. Will try later. On Monday, July 27, 2020 at 5:45:44 PM UTC+10, JD wrote: > > Hello again Danraymond, > > I've finally updated this theme to fix the previous bugs (The demo site > has also been updated to v5.1.22 of Tiddlywiki).

[tw5] How can I activate the vim mode using the CodeMirror plugin with Tiddlywiki?

2020-07-27 Thread Rafael Oliveira
Hi, I'm willing to edit my tiddlers using the vim mode. I've found out that for doing that on tiddlywiki I need to install the CodeMirror plugin because it has a vim mode. Basically, I've read this documentation page: https://tiddlywiki.com/plugins/tiddlywiki/codemirror/ Then I installed Code

[tw5] Re: Export to folder name? feature or workaround required.

2020-07-27 Thread TW Tones
Mark, Thanks for that reference, Its a great lead. I wonder if on single file wikis changing this will 1. work, 2. have no impact except when exporting. I imagine there is a danger if one imports this tiddler into a node wiki, that it will stuff it up? As noted earlier the c drive root is prote

[tw5] Re: [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread TW Tones
JD, Glad to have you around again. There are some wonderful improvements to tiddlywiki you will enjoy. Do not hesitate to ask in the forums because a number of barriers and limitations do not exist anymore. I notice that your solution replaces the the search in the sidebar segment. Its smart

[tw5] Re: Export to folder name? feature or workaround required.

2020-07-27 Thread 'Mark S.' via TiddlyWiki
I believe this tiddler https://tiddlywiki.com/#Customising%20Tiddler%20File%20Naming describes how names are generated. So it's not a browser-side thing -- except for the directory name. If the application could specify the path, then it could overwrite stuff down in c:\windows\system32 . I'v

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread TW Tones
Mat, If you think about it any link clicked in the story or side bar navigates to and adds the tiddler in the link to the story. Thus the relevant navigator widget wraps the page template, because within that, the story is "enumerated". And any click on a link, therein, needs to be honoured. I

[tw5] Re: How to get the intersection of two lists in one filterexpression.

2020-07-27 Thread TW Tones
Jan, By and intersection do you mean list only items in both lists? If so surly the following form would work to obtain the intersection. [run1] +[run2] Which lists all titles in run1 and passes them through if they are also members of run2 I have also used the oposite remove the intersection

Re: [tw5] Re: How to get the intersection of two lists in one filterexpression.

2020-07-27 Thread Jan
Hi Mat. Luckily I won't have any spaces in these fields. Really quite a mind-eating operation that is necessary for this I was chewing on this for quite a while. Thanks a lot! Jan Am 28.07.2020 um 01:46 schrieb Mat: Mat wrote: I gotta say I'm pretty proud over this one ...but some of th

[tw5] Re: How to get the intersection of two lists in one filterexpression.

2020-07-27 Thread Mat
Mat wrote: > > I gotta say I'm pretty proud over this one > ...but some of the pride just faded as I realize it might not handle spaced titles so you'd have to do a little more tweaking to the titles and perhaps escaperegexp. But the general idea should be useable. <:-) -- You received this m

[tw5] Re: How to get the intersection of two lists in one filterexpression.

2020-07-27 Thread Mat
I was mentally preparing for a similar problem so I picked up your challenge and... I gotta say I'm pretty proud over this one: <$set name="b" filter="""[enlist{!!list-b}split[ ]join[|]addprefix[(?=]addsuffix[)]]""" > <$list filter="[enlist{!!list-a}regexp]" emptyMessage="NO intersection"> <

[tw5] How to get the intersection of two lists in one filterexpression.

2020-07-27 Thread Jan
Hi, I want to filter the intersection of two lists; something like [list[!!actors]] *and* [subfilter] (xyz beeing also generated from a listfield). It is necessary to have this in one expression, because I need to define an emptyMessage. I does subfilter or the list always overwrite the existi

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-27 Thread Mat
Eric Shulman wrote: > > There is *currently* no easy syntax for setting up a repeating pattern of > countdowns. > That is something I will be adding soon. > In the mean time, to do the one hour cycle you described, you would need > to > [...] > Thank you, especially for continuing to develop a

[tw5] Re: Formula 0.2: Functional computing & spreadsheet formulas for TiddlyWiki

2020-07-27 Thread twid...@gmail.com
Hi Eric, Thank you! Emily On Monday, July 27, 2020 at 10:01:59 AM UTC-7 Eric Shulman wrote: > On Monday, July 27, 2020 at 7:40:30 AM UTC-7, twid...@gmail.com wrote: >> >> I've just discovered Formulas and I'm enjoying its straightforward >> crunching. Thank you so much for making this awesome

[tw5] Keyboard Widget Issue

2020-07-27 Thread Stobot
I'm running into what seems to be a scope issue and not sure how to work around it. I'm hoping that some experts here might see what I'm doing wrong. I have an edit-text widget for the user to enter a new title name, and then I need to append a date to the end of it and create a new tiddler fo

[tw5] Re: YouTube macro lil syntax help

2020-07-27 Thread Siniy-Kit
The problem that, if your start playing video in iframe, and go to another tiddler, this video will not stop and you will hear the sound of it. воскресенье, 5 июля 2020 г., 14:43:45 UTC+3 пользователь Jake написал: > > Yep, that worked! > > Using the inline filter, your macro definition would l

Re: [tw5] [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread Diego Mesa
JD! Great plugin! As I understand it, the recent "Command Pallet" also attempts to do this as well. On Monday, July 27, 2020 at 12:04:42 PM UTC-5, JD wrote: > > Wow, thank you, I overlooked that! > I've updated the plugin now. Please keep the bug reports coming! I'll look > into them tomorrow

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-27 Thread Eric Shulman
On Monday, July 27, 2020 at 9:22:15 AM UTC-7, Mat wrote: > > So do I understand it right that to achieve a repetition of 10minutes + >> 2minutes * 5times, I'd need to, in the tiddler, type in about 10 calls, >> right? I made a quick, but failed attempt to modify firstDone into: >> > > \define fi

Re: [tw5] [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread E Browns
Wow, thank you, I overlooked that! I've updated the plugin now. Please keep the bug reports coming! I'll look into them tomorrow ^^, On Tue, Jul 28, 2020, 00:32 Atronoush Parsi, wrote: > Great plugin! > > One minor comment > > 1. the preset tags for the new tiddler set in the config seems not to

[tw5] Re: Formula 0.2: Functional computing & spreadsheet formulas for TiddlyWiki

2020-07-27 Thread Eric Shulman
On Monday, July 27, 2020 at 7:40:30 AM UTC-7, twid...@gmail.com wrote: > > I've just discovered Formulas and I'm enjoying its straightforward > crunching. Thank you so much for making this awesome plugin! I'd like to > make a tiddler that shows the overall "feeling score" of a food logging > dat

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread Mat
@Saq Well, it works - that was certainly magical! I found a navigator widget in the pagetemplate just to get a clue what to do with it, because the docs definitely are not clear but I took your word for it and just naively threw one in, no pa

[tw5] Re: Export to folder name? feature or workaround required.

2020-07-27 Thread 'Mark S.' via TiddlyWiki
On Firefox/Linux, it seems to remember the path per webpage. So it uses the last path used for that web page. If I switch to a different web page where I've saved to somewhere else, it remembers that. But, in any event, that's under the browser's control -- not the app's. On Monday, July 27,

Re: [tw5] [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread Atronoush Parsi
Great plugin! One minor comment 1. the preset tags for the new tiddler set in the config seems not to work! Stay healthy Atro On Mon, Jul 27, 2020 at 8:05 PM JD wrote: > Hi everyone! > > I missed being here. I hope you're all doing well during these hard times! > > I updated my *NTFS* plugi

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-27 Thread Mat
> > I hope that helps explain things a bit better... > Yes. I mistook "the n:th countdown" to mean "the n:th counter". I would think this is an easy mistake to make since there are three counters in front of ones eyes as one reads this. So do I understand it right that to achieve a repetition

Re: [tw5] [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread JD
Oh, thank you so much! I clung to my old-version wikis for a long while, but v5.1.22 is very fun to use, with all the extended operators, and now here I am again, playing with them ^^, -jd On Tuesday, July 28, 2020 at 12:52:02 AM UTC+9, Atronoush wrote: > > Hello JD, > > No see you in the forum

[tw5] Re: [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread JD
Hey, thanks mario! ^^, I would have to look into it tomorrow, but for now we can work around it by closing the sidebar first when configuring the placeholder. Stay safe! -jd On Tuesday, July 28, 2020 at 12:47:13 AM UTC+9, PMario wrote: > > Hi Jed, > > Very nice plugin! Cool stuff!! > > There

Re: [tw5] [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread Atronoush Parsi
Hello JD, No see you in the forum for a long time Many thanks for all your contributions to Tiddlywiki. I really appreciate it. I love your developed themes and palettes and I hope to see more contribution from you in the future. Stay healthy. Best Atro On Mon, Jul 27, 2020 at 8:05 PM JD w

[tw5] Re: [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread PMario
Hi Jed, Very nice plugin! Cool stuff!! There is a little problem with: http://j.d.ntfs22.tiddlyspot.com/#%24%3A%2Fplugins%2Fjd%2FNTFS22%2Fconfig ... If you config the "placeholder string". The focus jumps to the search input. -mario -- You received this message because you are subscribed

[tw5] [PLUGIN] hello, presenting NTFS22 (New Tiddler From Search for TW5.1.22), with ability to specify title and tags

2020-07-27 Thread JD
Hi everyone! I missed being here. I hope you're all doing well during these hard times! I updated my *NTFS* plugin with some added features. Mainly, the ability to set some fields while creating the tiddler from the sidebar searchbar. For example, the search term: It's cloudy today #[[dreaming

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread Saq Imtiaz
I don't remember off the top of my head the exact shadow tiddler name but it would be under core/templates. Nothing special in it though, just wrap a navigator widget around your template and it should do what you want. On Monday, July 27, 2020 at 5:28:49 PM UTC+2, Mat wrote: > > Saq, thanks fo

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread Mat
Saq, thanks for reply Your template is missing a navigator widget to handle the tm-navigate > message. > The default template includes a navigator widget. > Which/where is actually "the default template" you talk about so I can investigate it? (The tm-open-window call in $:/core/ui/Buttons/open

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread Saq Imtiaz
Your template is missing a navigator widget to handle the tm-navigate message. The default template includes a navigator widget. On Monday, July 27, 2020 at 4:25:44 PM UTC+2, Mat wrote: > > @Eric, thank you for taking a look! > > template="tid" parameter >> > If you remove this parameter fr

[tw5] Re: Formula 0.2: Functional computing & spreadsheet formulas for TiddlyWiki

2020-07-27 Thread twid...@gmail.com
And oh yeah the value() at the beginning is unnecessary. On Monday, July 27, 2020 at 7:51:36 AM UTC-7 twid...@gmail.com wrote: > I've reached a somewhat clunky solution, although I'm not sure why it > works: > > \define bad() > (= value([tag[Food Log]tag[July]tag[bad]count[]]) =) > \end > > <$w

[tw5] Re: Formula 0.2: Functional computing & spreadsheet formulas for TiddlyWiki

2020-07-27 Thread twid...@gmail.com
I've reached a somewhat clunky solution, although I'm not sure why it works: \define bad() (= value([tag[Food Log]tag[July]tag[bad]count[]]) =) \end <$wikify name=badNum text=<>> (= value(<>) * 2 =) Emily On Monday, July 27, 2020 at 7:40:30 AM UTC-7 twid...@gmail.com wrote: > Hi Evan, > >

[tw5] Re: Formula 0.2: Functional computing & spreadsheet formulas for TiddlyWiki

2020-07-27 Thread twid...@gmail.com
Hi Evan, I've just discovered Formulas and I'm enjoying its straightforward crunching. Thank you so much for making this awesome plugin! I'd like to make a tiddler that shows the overall "feeling score" of a food logging database by counting the number of results for each mood (bad, decent,

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-27 Thread Eric Shulman
On Monday, July 27, 2020 at 7:01:27 AM UTC-7, Mat wrote: > > Eric Shulman wrote: >> >> "Programmed Countdown Sequences" (aka, "consecutive timers"). >> Give it a try and let me know what you think. >> > > Looks great! I am totally confusded by the notes there though, i.e: > >> >>- When the firs

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread Mat
@Eric, thank you for taking a look! template="tid" parameter > If you remove this parameter from your $action-sendmessage, > then the button works the same in both cases. > OK, I updated the demo http://winproblem.tiddlyspot.com/ to make the template parameter not use the "tid" itself, bu

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-27 Thread Mat
Eric Shulman wrote: > > "Programmed Countdown Sequences" (aka, "consecutive timers"). > Give it a try and let me know what you think. > Looks great! I am totally confusded by the notes there though, i.e: > >- When the first countdown ends, you will get an additional minute. > > "First" should

[tw5] Re: Scroll via separate window works - and not :-/

2020-07-27 Thread Eric Shulman
On Monday, July 27, 2020 at 6:28:55 AM UTC-7, Mat wrote: > > This demo shows the problem: http://winproblem.tiddlyspot.com/ > Using $action-navigate *works* in a separate window... > IF the window was opened via the tiddler tool button "Open in new > window"... > but NOT if the window was opened v

[tw5] Re: YouTube macro lil syntax help

2020-07-27 Thread 'Jake' via TiddlyWiki
> A little related additional question. I sorted out with YouTube, but what > if I want to play .mp4 inside TW? > > I tried both and tags, but they didn't work. For example > if I want a video from https://somesite.com/somevideo.mp4 to play and > write: > > https://somesite.com/somevideo.mp4

[tw5] Scroll via separate window works - and not :-/

2020-07-27 Thread Mat
This demo shows the problem: http://winproblem.tiddlyspot.com/ Basically: Using $action-navigate *works* in a separate window... IF the window was opened via the tiddler tool button "Open in new window"... but NOT if the window was opened via another button. ...but both ways use the same method,

[tw5] Re: Macrocall hack broke after TW ver5-1-20

2020-07-27 Thread PMario
Hi, It would be nice, if you would provide a minimal test case, we can work with. ... Your example contains a template, which is not known. So how should we reproduce the problem? -mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubsc

[tw5] Re: Export to folder name? feature or workaround required.

2020-07-27 Thread PMario
On Monday, July 27, 2020 at 5:51:37 AM UTC+2, TW Tones wrote: > > >- I am aware of apps such as the Office 365 Suite that can save to and >remember where the file was when opened in the browser, so it is possible. > > I'm pretty sure it's not possible to remember it within the app, What yo

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-27 Thread Eric Shulman
On Sunday, July 26, 2020 at 12:44:45 AM UTC-7, Mat wrote: > > Thanks for asking! As noted, I'm hoping to use TW like an InstantBoss > so I can set several > consecutive timers; a typical session is "workduration + breakduration * > reps", e.g 10+2 *

[tw5] Re: Static html book created with TiddlyWiki

2020-07-27 Thread David Gifford
Thanks TT and TW T! Yes, I am actually working on weeding out the hr's and using headers, bullets and indents to differentiate sections. Thanks! On Saturday, July 25, 2020 at 7:39:04 PM UTC-5 TW Tones wrote: > David, > > Thanks for sharing a real life example. > > A Quick shareback is if you

Re: [tw5] Re: How to get the links which are stored in another field than text.

2020-07-27 Thread Jan
Hi Eric, thank You! Great solution. Adding |+[decodeuricomponent[]] to your filter I also got my spaces and rockdöts;-) (The special unicode-characters). Best wishes Jan| Am 27.07.2020 um 03:09 schrieb Eric Shulman: On Sunday, July 26, 2020 at 5:14:27 PM UTC-7, Jan wrote: I want to filt

[tw5] Re: The problem with tiddlywiki?

2020-07-27 Thread Birthe C
You are all giving the reason, we should all be so grateful, that so many are ready to use the extra time to publish their goodies. @TW Tones, *How do you handle this problem?* Most days someone posts a new innovative solution, method or idea that was not thought of before. That is just lovely

[tw5] Re: Presenting: Whitespace, a negative-spacious, webapp-nostalgic theme

2020-07-27 Thread twid...@gmail.com
Hi JD, Thank you. :) Emily On Sunday, July 26, 2020 at 7:24:57 PM UTC-7 JD wrote: > I updated the tiddler in > http://j.d.whitespace.tiddlyspot.com/#Compatibility%20with%20''Stories''%20Plugin > ! > > Thank you so much for testing! Please do inform if you encounter more bugs! > > -jd > > > O

Re: [tw5] Re: Presenting: Whitespace, a negative-spacious, webapp-nostalgic theme

2020-07-27 Thread JD
Hello again Danraymond, I've finally updated this theme to fix the previous bugs (The demo site has also been updated to v5.1.22 of Tiddlywiki). For safe re-installation, please go to *$:/AdvancedSearch* > *Filter* tab of your wiki and delete this filter search term: [is[shadow]prefix[$:/them

[tw5] Re: The problem with tiddlywiki?

2020-07-27 Thread Saq Imtiaz
Pretty much what @pmario said. If I create utilities for my own use, I usually stop developing, when they > work "just good enough" for me. To publish them as a plugin or add them to > my library, I need at least 2 more days for additional testing and UX > polishing. Most of the time it also ne

[tw5] Re: The problem with tiddlywiki?

2020-07-27 Thread TW Tones
Ha Ha, Mario, That rule is similar to the one I have used, It takes 80% of the time to get 80% of the work done, and 80% of the time to get the final 20% done. Yes - it adds up to 160% The problem for me is I seem to discover more or better is possible, so the work to be done expands, before

[tw5] Re: The problem with tiddlywiki?

2020-07-27 Thread PMario
Hi Tony, In software development, there is a "rule of thumb ". You can finish a project up to 80% in 20% of the time. If I create utilities for my own use, I usually stop developing, when they work "just good enough" for me. To publish th

[tw5] Re: How to add

2020-07-27 Thread PMario
On Monday, July 27, 2020 at 7:48:08 AM UTC+2, Lin Onetwo wrote: ... > I add a