[tw5] Using the keyboord plugin, is it possible to have tiddler-specific keyboard shortcuts?

2018-08-20 Thread nakedmind
Hi there, I'm quite new to TW, but already I am finding it very very useful. I've set aside some coding projects I was working on and spent the whole of last week learning it. Also spent a lot of time trying to customize it. I have a created a task management setup based on this tutorial: h

[tw5] Re: Tidgraph - show all the tiddlers listed in a custom field

2018-08-20 Thread CHUN LI
I am using tags[] and it is working fine. But I have to put everything in my field to tags. On Saturday, August 18, 2018 at 1:39:32 PM UTC+12, CHUN LI wrote: > > I recently used Tidgraph and want to use custom mode to show all the > tiddlers listed in a custom field. > > E.g. if my field "Thing

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread TonyM
Great Question Mat, Having read through the reply's so far there are some great comments. Some thoughts on mine on this that may offer another perspective. I was a hobby programmer before I left school, then a professional Analyst/Programmer in my early career, and I have always being a concept

[tw5] External attachments plugin for tiddlydesktop failing

2018-08-20 Thread 'Mark S.' via TiddlyWiki
One of the features I keep hoping will work with TW is that of dragging and dropping images as external images. Supposedly this will work with tiddlydesktop using the external attachments plugin. Currently I have the most recent vsn of TiddlyDesktop and presumably the most recent vsn of the plu

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread Reto
> > What are you trying to do here? > Just get the title of the tiddler within which I call the macro ... > A widget inside a widget will never work directly. But this should work: > > <$macrocall $name="test-macro" title={{!!title}}/> > Yes, that did the trick ... > So, there's no need fo

[tw5] Re: Suggested TiddlyWiki -- Round #1

2018-08-20 Thread @TiddlyTweeter
Factory Farming & Pop Music -- how music makes it better > > > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlyw

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread 'Mark S.' via TiddlyWiki
A version that waits for 3 characters: <$edit-text tiddler="mytitlesearch" size="50" tag="input"/> ''Results:'' <$list filter="[{mytitlesearch}] +[minlength[3]]" emptyMessage="Type at least 3 characters to see results"> <$list filter="[search{mytitlesearch}tags[]]" template="$:/core/ui/TagTempl

[tw5] Suggested TiddlyWiki -- Round #1

2018-08-20 Thread @TiddlyTweeter
The History & Usage Of Brassicaceae -- very human friendly plants -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop re

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread David Gifford
Hi all Thanks to Mark's help in this thread, I was able to put this together: http://giffmex.org/experiments/crossref.tags.titles.exp.html. There is an explanation there of how it works and why I created it. Case closed! Note that the file uses a portion I swiped from the Zemox tag cloud, and

Re: [tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread @TiddlyTweeter
> > h0p3 wrote: I can't point to another tool which has allowed me to be so > quantitative about the qualitative. > And vice-versa. Its pretty damn good all round on the user front. Once you know a bit. Josiah -- You received this message because you are subscribed to the Google Groups "Ti

Re: [tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread h0p3's Wiki
Conceptual analysis is hard here. You have to take up significant commitments in a number of philosophical domains to provide any kind of satisfactory answer. For some, using your mouse is programming your computer (as ridiculous as that may initially sound). You might need to define what you mean

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread David Gifford
I added this in Tags and in Search in the toolmap https://dynalist.io/d/zUP-nIWu2FFoXH-oM7L7d9DM On Monday, August 20, 2018 at 10:44:22 AM UTC-5, Mark S. wrote: > > Something like this, then: > > <$edit-text tiddler="mytitlesearch" size="50" tag="input"/> > > <$reveal state="mytitlesearch" type="

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread David Gifford
Mark that works perfectly! Thank you so much!!! On Monday, August 20, 2018 at 10:44:22 AM UTC-5, Mark S. wrote: > > Something like this, then: > > <$edit-text tiddler="mytitlesearch" size="50" tag="input"/> > > <$reveal state="mytitlesearch" type="nomatch" text=""> > <> > > > ??? > > -- Mark > -

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread Mohammad
Mark, Is it possible to ignore result for inputs less than three characters? -Mohammad On Monday, August 20, 2018 at 8:51:25 PM UTC+4:30, Mark S. wrote: > > Oh, I forgot that you probably want to see the tags as buttons. So ... > > <$edit-text tiddler="mytitlesearch" size="50" tag="input"/> > >

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread 'Mark S.' via TiddlyWiki
Oh, I forgot that you probably want to see the tags as buttons. So ... <$edit-text tiddler="mytitlesearch" size="50" tag="input"/> <$reveal state="mytitlesearch" type="nomatch" text=""> <$list filter="[search{mytitlesearch}tags[]]" template="$:/core/ui/TagTemplate"> -- Mark On Monday, Augu

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread HansWobbe
Excellent. I use a large number of distinct tags from the full unicode set and my tittles generally consist of easily typed keyboeard characters. I would never have thought of this way of gaining easy access to the hard-to-type symbols. Thanks for shaing! Regards, Hans On Monday, August 20

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread 'Mark S.' via TiddlyWiki
Coding disguised as HTML. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send email to tiddlywiki@

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread 'Mark S.' via TiddlyWiki
What are you trying to do here? A widget inside a widget will never work directly. But this should work: <$macrocall $name="test-macro" title={{!!title}}/> So, there's no need for the inner <$view> widget, unless there was something else you meant to achieve? Good luck! -- Mark <$macrocall $

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread Mat
Jed Carty wrote: > > If using Ook! gets to be considered coding than there isn't any reason > that what we do with tiddlywiki isn't. > If marketing TW, we should probably not use this as an argument ;-) <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyW

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread 'Mark S.' via TiddlyWiki
Something like this, then: <$edit-text tiddler="mytitlesearch" size="50" tag="input"/> <$reveal state="mytitlesearch" type="nomatch" text=""> <> ??? -- Mark -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and st

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread 'Mark S.' via TiddlyWiki
> > Sometimes they call it tagssearch and sometimes tagsearch, so I wasn't > sure how to call it in the toolmap. It is this one. > http://braintest.tiddlyspot.com/#TagsSearch-Plugin > > When you mention the toolmap, you should probably include a link. I couldn't get tagsearch to do anything me

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread Jed Carty
I would say it is certainly coding. TiddlyWiki widgets may not be Turing complete, but even without external javascript I was able to make a simple interactive fiction engine using it. And there are domain-specific languages that don't need to be Turing complete. I think it would be hard to con

Re: [tw5] [philosophy] Is TW programming?

2018-08-20 Thread Mat
Ah, now the term crystallized: IMO, TW is a "hacking language" ! Again, read my post here above to appreciate that I mean this only in a positive sense. <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and st

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread Mat
PMario wrote: > > What "is" hacking in TW? >> > > Creating stuff without much documentation ;) > LOL! <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tidd

Re: [tw5] [philosophy] Is TW programming?

2018-08-20 Thread Mat
Interesting thoughts guys! ;-) Having now thought about this for another hour ;-) I've come to the conclusion that the very best description for what we do in TW is probably "hacking"! (Not that I called for help with a perfect term in my OP but anyway). I mean, *hacking* very much implies cod

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread Mohammad
Mat, Sometimes I compare TW with TEX. Wikipedia: TeX was designed with two main goals in mind: to allow anybody to produce high-quality books using minimal effort, and to provide a system that would give exactly the same results on all computers, at any point in time. While with TW we cannot

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread Reto
> > You'd need to use https://tiddlywiki.com/#MacroCallWidget > Works: <$macrocall $name="test-macro" title=<>/> Still struggling with getting the value out of the field itself ... the following is not working: <$macrocall $name="test-macro" title={{<$view field="title"/>}}/> Also no clue how

[tw5] Re: Timimi plugin - released for firefox/chrome/chromium in linux/mac/windows

2018-08-20 Thread Mohammad
Okay! Thank you Riz! /Mohammad On Monday, August 20, 2018 at 3:08:23 PM UTC+4:30, Riz wrote: > > Not really. Not in chrome anyway. It will go away once it is possible to > install from chrome webstore. That process has hit a snag for now as google > is not accepting Indian credit cards, apparen

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread @TiddlyTweeter
Mat, on LEGO. I think its a good analogy. Especially for ready-bits like plugins (already lego-like) that just plug-n-work. The plugin architecture of TW seems very robust. The LEGO analogy works quite well also for dealing with the "fragment model"--making wholes from bits. Each "brick" is n

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread PMario
On Monday, August 20, 2018 at 3:12:43 PM UTC+2, Reto wrote: > > > Still I would like to call the macro passing the tiddler like < <>>>. How can I access the title field within the tiddler > itself? > You'd need to use https://tiddlywiki.com/#MacroCallWidget -m -- You received this message b

[tw5] Re: Request Search to filter tags, but by typing tiddler titles into search box

2018-08-20 Thread David Gifford
Hi Mark Sometimes they call it tagssearch and sometimes tagsearch, so I wasn't sure how to call it in the toolmap. It is this one. http://braintest.tiddlyspot.com/#TagsSearch-Plugin As for what I want to do: I plan to have a way to enter the title and author of a book, and every new tiddler wi

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread Reto
> > You are right. There's a problem. > > Easy fix would be to use the macro without a parameter. > Works when "$title$" is replaced at both place by "<>". Thanks. Still I would like to call the macro passing the tiddler like <>>>. How can I access the title field within the tiddler itself? T

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread Reto
Hey Tony ;-) > It is quite different to TWC - my technical understanding has improved > since learning TW5 > It is not that easy to get into TW5 even with some knowledge about TWC ... > Here are a few tips I wish someone gave me when I started moving to TW5, > not all will make sense right

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread @TiddlyTweeter
Mat, coming back to zero. IS TW programming? <$select tiddler="$:/temp/tag1"> <$list filter="[prefix[$:/tags]sort[]]"> >><> <$select tiddler="$:/temp/tag3"> <$list filter="[tag[$:/tags/ViewTemplate]sort[]]"> >><> IF that is not programming I don't know what is. Josiah

Re: [tw5] [philosophy] Is TW programming?

2018-08-20 Thread @TiddlyTweeter
Jeremy Ruston wrote: > > ... the ability to program is the ultimate empowerment in our digital > world, and therefore anything that broadens programming to a broader > population must be a good thing. > Pause for thought. It reads right. Josiah -- You received this message because you are s

Re: [tw5] [philosophy] Is TW programming?

2018-08-20 Thread Enneco Gotzon
On Mon, Aug 20, 2018 at 1:28 PM, Jeremy Ruston wrote: > anything that broadens programming to a broader population must be a good > thing… > It is. Thank you. ❤️ all you. > > Best wishes > > Jeremy. > > > > On 20 Aug 2018, at 12:09, Mat wrote: > > What "is" hacking in TW? Is it coding? Is the

[tw5] Re: Complete Newcomer to CSS and TiddlyWiki, don't understand why my code is acting weird.

2018-08-20 Thread Drew D
That sure did fix it. Thanks so much friends. Rookie mistake! :) On Monday, August 20, 2018 at 6:14:54 AM UTC-5, PMario wrote: > > Hi Drew, > > The @@.warning creates a element, which is an inline element. > is a block element. > > So you could use > > display: block > > in your CSS defini

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread PMario
-- missing link added to first post :) -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send emai

[tw5] Re: [philosophy] Is TW programming?

2018-08-20 Thread PMario
On Monday, August 20, 2018 at 1:09:19 PM UTC+2, Mat wrote: > > What "is" hacking in TW? > Creating stuff without much documentation ;) > Is it coding? > Kind of! > Is the particular WikiText used in TW a high level programming language? > Yes. We have some basic wiki-text elements like b

Re: [tw5] [philosophy] Is TW programming?

2018-08-20 Thread Jeremy Ruston
For me, a central part of the experience of programming is casting ones mind into the position of the computer. As we read code we run it in our minds just as a computer would run it. It turns out to be much the same with wikitext; one has to learn to think a little bit like the parser. Those f

[tw5] Re: Complete Newcomer to CSS and TiddlyWiki, don't understand why my code is acting weird.

2018-08-20 Thread PMario
Hi Drew, The @@.warning creates a element, which is an inline element. is a block element. So you could use display: block in your CSS definition, which may fix the problem. ... I didn't test your code. So just a guess. -m -- You received this message because you are subscribed to

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread PMario
You are right. There's a problem. Easy fix would be to use the macro without a parameter. \define test-macro() <$select tiddler=<> field="filter-field"> All ExtendedBrainButton ExtendedBrainHeadTemplate {{$title$||table-template}} \end -m -- You received this message because you are subsc

[tw5] Re: [KeeBoord] - GitHub

2018-08-20 Thread @TiddlyTweeter
Thanks BTC. Simple but helpful. That simple sentence that you can have as many popups as you need & about state tiddlers is maybe worth including in the docs? J. BurningTreeC wrote: > > You can make as many different keyboard shortcuts for as many different > popups as you want. You just need

[tw5] [philosophy] Is TW programming?

2018-08-20 Thread Mat
What "is" hacking in TW? Is it coding? Is the particular WikiText used in TW a high level programming language? Or is it just markup? ...semi related... IRL, I compare TW to building with lego. I master TW pretty well so I say I can build "anything" with TW analogously to how I can build "anyth

[tw5] Re: [KeeBoord] - GitHub

2018-08-20 Thread BurningTreeC
> > Ciao BTC > > This is just a question about "ActionPopupWidget" ... is it possible to > have more than one Popup assigned to keys? I am a bit unclear about this. I > could not figure out if you could do that. > > Josiah > You can make as many different keyboard shortcuts for as many differen

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread Reto
> > \define test-macro(title:<>)... > > This should use currentTiddler variable as the default variable, if no > parameter is passed. > Must be doing something wrong ... now a new tiddler "<>" is added which contains the field "filter-field". This is my test-macro: \define test-macro(title:<>

Re: [tw5] Re: How to turn the Geolocation Script to a macro the Leaflet Plugin?

2018-08-20 Thread Jan
Salut Sylvain, this is what i expected the button to do ... but when I open the Tiddler in Firefox or Safari on my Iphone after pressing the button, I cannot see the field "point" it created. I don't know why. It would be nice if the button could give feedback with a notification... and perhaps

[tw5] Re: How to pass a parameter to a list?

2018-08-20 Thread Reto
> > This is a "text substitution" ... So it's not a variable. > > Have a closer look at: > https://tiddlywiki.com/#Macro%20Definitions%20in%20WikiText > Ok, my understanding grows ... thanks for the hint. -- You received this message because you are subscribed to the Google Groups "TiddlyWi

[tw5] Re: Timimi plugin - released for firefox/chrome/chromium in linux/mac/windows

2018-08-20 Thread Riz
Not really. Not in chrome anyway. It will go away once it is possible to install from chrome webstore. That process has hit a snag for now as google is not accepting Indian credit cards, apparently. I am working to find a solution. -- You received this message because you are subscribed to the

[tw5] Re: [KeeBoord] - GitHub

2018-08-20 Thread @TiddlyTweeter
Ciao BTC This is just a question about "ActionPopupWidget" ... is it possible to have more than one Popup assigned to keys? I am a bit unclear about this. I could not figure out if you could do that. Josiah -- You received this message because you are subscribed to the Google Groups "TiddlyW

[tw5] Re: Complete Newcomer to CSS and TiddlyWiki, don't understand why my code is acting weird.

2018-08-20 Thread Mohammad
Hie Drew D There should be no problem using css in TW look here for example http://w3css.tiddlyspot.com/ and an example here: http://w3css.tiddlyspot.com/#Notes%20and%20Classes Good luck Mohammad -- You received this message because yo

[tw5] Re: I love TiddlyWiki because...

2018-08-20 Thread @TiddlyTweeter
"I've been using TiddlyWiki as a non-linear diary/notebook for the past year, incrementally making improvements to the UI. Made it a self-contained app with Nativefier and it's starting to feel really solid." -- @kepano -- You received th

[tw5] Re: [KeeBoord] - GitHub

2018-08-20 Thread @TiddlyTweeter
Ciao BTC focus-title is ctrl-alt-H, tags ctrl-alt-T, editor ctrl-alt-E, type ctrl-alt-Y, fields name ctrl-alt-F, fields value ctrl-alt-V (If I remember them correctly - these are difficult shortcuts but they can all be changed) One of the things that I think relevant is HOW to choose appropriat

[tw5] Re: Timimi plugin - released for firefox/chrome/chromium in linux/mac/windows

2018-08-20 Thread Mohammad
Riz, When I reopen Chrome I got a message (attached image) Disable developer mode extensions! Is there any way to prevent displaying this? Mohammad On Saturday, August 18, 2018 at 10:39:22 AM UTC+4:30, Riz wrote: > > > https://github.com/ibnishak/Timimi > > > For those who are unfamiliar, timi

Re: [tw5] Re: How to turn the Geolocation Script to a macro for Sylvain Naudins Leaflet Plugin?

2018-08-20 Thread SylvainComte
Hello Jan, I went to your szenio.de/drehorte page. The button was here. I clicked here and it "worked" (e.g. It added a "point" field with my coordinates in the GeoLocTest tiddler). But there are some issues : each time the tiddler is modified, the button is re-rendered. So if you click on the

[tw5] Re: [KeeBoord] - GitHub

2018-08-20 Thread BurningTreeC
> > Ciao BTC > > Looking good! > > Tested on Win 7 64bit in FF52 & 60 and latest Chrome on Desktop. Win 10 > 62bit FF60 on Surface Windows Tablet in touch-screen only mode. > > Small observations about TAB between fields in editor. > > 1 - If you manually add a new tag the tabbing looses focus

[tw5] Re: Simple fuzzy search plugin TwFusejs beta 0.9.0 ready for test driving

2018-08-20 Thread @TiddlyTweeter
UPDATE: This replaces a post I inadvertently sent out before it was finished. Ciao TheDiveO I had a closer look at the plugin. It looks interesting. I'm going to see if I can optimise the JSON for a specific use case where I have a lot of tiddlers where only the text field is important. I'm no

[tw5] Re: Simple fuzzy search plugin TwFusejs beta 0.9.0 ready for test driving

2018-08-20 Thread @TiddlyTweeter
I had a closer look at the plugin. It looks interesting. I'm going to see if I can optimise the JSON for a specific use case where I have a lot of tiddlers where only the text field is important. I'm not done on that yet. What I have noticed playing the settings ... 1 - Quite small changes in t

[tw5] Re: [KeeBoord] - GitHub

2018-08-20 Thread @TiddlyTweeter
Ciao BTC Looking good! Tested on Win 7 64bit in FF52 & 60 and latest Chrome on Desktop. Win 10 62bit FF60 on Surface Windows Tablet in touch-screen only mode. Small observations about TAB between fields in editor. 1 - If you manually add a new tag the tabbing looses focus IF you press (add

Re: [tw5] Re: Selecting tags from the drop-down -menu using keyboard

2018-08-20 Thread DemoniWaari
PERFECT! Thank you so much for doing this. No more reaching for the mouse just to add a tag... On Sun, Aug 19, 2018 at 8:30 PM BurningTreeC wrote: > Hi @DemoniWaari, > > the current prerelease version of the KeeBoord plugin on its github page > now has this functionality using the Down/Up arrows