[tw] Re: [TW5] Is there a global switch to disable "auto-wikiword" on words like ThisOne?

2015-05-15 Thread Kakyo
Thanks Eric! That worked.



On Thursday, May 14, 2015 at 4:27:40 PM UTC-4, Eric Shulman wrote:
>
> On Thursday, May 14, 2015 at 1:07:12 PM UTC-7, Kakyo wrote:
>>
>> I know the "~" syntax, but I'd like to disable the auto-wikiword globally.
>> There used to be a DisableWikiword plugin for TWc. 
>> Is there an equivalent feature with TW5?
>>
>
> 1) Open "AdvancedSearch" (click the magnifying glass next to the search 
> input in the sidebar)
> 2) From the Shadows tab, search for this tiddler:
>$:/core/modules/parsers/wikiparser/rules/wikilink.js
> 3) Open and edit the tiddler
> 4) Scroll down to find the "module-type" field
> 5) Delete this field (press the trash can icon)
> 6) Press 'done' (the checkmark)
> 7) Save-and-reload the document for the change to take effect
>
> All automatic WikiWord links are now treated as regular text.
> Note that any use of "~" preceding a WikiWord will now show up as a 
> literal "~", so you'll have to go back and remove those.
> If you want to restore automatic WikiWord linking, just delete the 
> modified "wikilink.js" tiddler.  This will restore the default shadow 
> definition.  Save-and-reload for the change to take effect.
>
> enjoy,
> -e
> Eric Shulman
> ELS Design Studios
> TiddlyTools - "Small Tools for Big Ideas!"
> InsideTiddlyWiki: The Missing Manuals
>
> YOUR DONATIONS ARE VERY IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
> Professional TiddlyWiki Consulting Services...
> Analysis, Design, and Custom Solutions:
>http://www.TiddlyTools.com/#Contact
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/798f58a9-f54c-4882-9f10-d507f6fa9911%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Is there a global switch to disable "auto-wikiword" on words like ThisOne?

2015-05-14 Thread Kakyo
I know the "~" syntax, but I'd like to disable the auto-wikiword globally.
There used to be a DisableWikiword plugin for TWc. 
Is there an equivalent feature with TW5?

Thanks!

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1fa477c0-f907-45da-a990-5772fcaa5bd4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Cannot edit a very long tiddler

2015-05-14 Thread Kakyo
Thanks Mario! Worked like a charm!
I'm not a web developer. Does this mean that there is a set of exposed 
object API one can call to manipulate the entire wiki in the developer 
console?
If so, where is the API doc?

Thanks,
Beinan

On Wednesday, May 13, 2015 at 3:03:57 AM UTC-4, PMario wrote:
>
> Hi Kakyo,
>
>  - Open the Developer Console with F12
>
>  - Type: $tw.wiki.deleteTiddler("Your tiddler name")
>
> should remove it. 
>
> -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 email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9dc9b5aa-f206-45c7-9e14-d6203055042d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Cannot edit a very long tiddler

2015-05-12 Thread Kakyo
Okie... That makes perfect sense now! Thanks Eric!
It's too late for me though... I clicked the upgrade button and now I can't 
even open it,
nor can I delete the tiddler altogether...

Well, I do have a TWc backup, which I can fix and re-import. 
It's just that this corrupt tiddler will be a ghost in my TW5 wiki.
Is there a way I can programmatically remove it? Should I just open the 
html in a text editor
and remove a certain section?

On Tuesday, May 12, 2015 at 9:24:32 PM UTC-4, Eric Shulman wrote:
>
> On Tuesday, May 12, 2015 at 3:46:32 PM UTC-7, Kakyo wrote:
>>
>> It is not pure text.
>> It has many {{{}}} blocks, basically my code-snippets collections for all 
>> kinds of programming languages.
>> But no fancy syntax, just {{{}}} code blocks, plus !(banners), and 
>> bullets.
>>
>
> Oh!.. I have an idea why your content seems to be slowing things down:
>
> In TWClassic, the triple-braces syntax ({{{ ... }}}) is used to designate 
> a simple ... block for formatting purposes.
> In TiddlyWiki 5+, triple-braces is used perform "filtered transclusion" 
> (see http://tiddlywiki.com/#Transclusion%20in%20WikiText).
>
> As a result, when if paste your TWC-formatted content into a TW5 tiddler, 
> each code snippet ends up being passed to the core's filter engine for 
> processing and, even though it is very unlikely that any of the code 
> snippets are valid TiddlyWiki filters, it still creates quite a bit more 
> overhead just to parse that content.
>
> To avoid this, you should change all occurrences of {{{ and }}} to ``` 
> (tripled back-ticks), which is the TW5 syntax for formatting a code block. 
>  If you do this before you paste it into a TW5 tiddler editor, then 
> hopefully the massive slowdown you are currently observing will simply 
> disappear.
>
> let me know how it goes...
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> YOUR DONATIONS ARE VERY IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
>
>
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4f48e609-6a4e-4423-9337-9bb1f997dd87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Cannot edit a very long tiddler

2015-05-12 Thread Kakyo


<https://lh3.googleusercontent.com/-zJ7SlUHX3kM/VVKDOGl-1fI/BBs/hgScWRtVK-E/s1600/Screen%2BShot%2B2015-05-12%2Bat%2B18.47.39.png>
I'm using a Macbook Air 2012, see screenshot for my hardware info please.
I don't think this is anywhere near the bottom of the peers.

Funny, using the same machine with TWc, I tested copy-pasting a long 
article (pure text) multiple times into the same text box, which finished 
in a flash.
With TW5, the copy-pasting itself, like you mentioned, keeps triggering 
some processing, so I got more than a minute of lags.
This kind of performance is quite worrisome, and IMO with such important 
performance tweaks, there should be a configuration instead of a plugin.
I hope that the TW5 is not moving towards a heavyweight solution like MS 
Office. 

I love many aspects of TW5 such as the Control Panel and more detailed 
tiddler configurations.
IMHO, TWc shines with its simplicity and it gets things done. 
Although not perfect, it sets itself apart from all the other solutions on 
the market by its simplicity and outstanding performance.
I started making the switch out of the fear that TWc will one day be 
abandoned and by then I'd have too much legacy to move away from.


On Tuesday, May 12, 2015 at 6:30:58 PM UTC-4, Mark S. wrote:
>
> Apparently TW5 runs a constant loop watching every keystroke. What I would 
> like is to turn this off during draft mode. If my sidebar is out of date, 
> that's fine with me.
>
> There's a hack in this thread:
>
>https://groups.google.com/forum/#!topic/tiddlywiki/1cOZyZKKFrY
>
> This will let you change the variable that is supposed to control timing 
> around monitoring. However, it didn't seem to help much. Maybe it will work 
> better for you?
>
> If you're not running on nodejs, then you could also try the plugin "It's 
> All Text". You configure this plugin and it lets you open the tiddler text 
> in a separate editor.
>
> You didn't mention what kind of hardware you're running, nor how big your 
> tiddler is. Hardware power definitely makes a difference.
>
> Good luck!
> Mark
>
>
> On Tuesday, May 12, 2015 at 3:07:20 PM UTC-7, Kakyo wrote:
>>
>> I have a very long TWc tiddler that I cannot even open to edit after 
>> upgrading (Firefox 37.0.2 with TiddlerFox).
>> FF keeps telling me there is a script running and prompts me to stop it.
>>
>> How should I fix this?
>>
>>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/df90bd03-b29c-41af-a4b7-2ba590629036%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Cannot edit a very long tiddler

2015-05-12 Thread Kakyo
It is not pure text.
It has many {{{}}} blocks, basically my code-snippets collections for all 
kinds of programming languages.
But no fancy syntax, just {{{}}} code blocks, plus !(banners), and bullets.

I just did a stat with Sublime Text of that tiddler

Word count for selected region

Words: 25567
Characters (ignoring whitespace): 142817
Characters (with whitespace): 201772
Lines: 5210

Forgot to say, it has non-ASCII characters like from CJK or European 
languages if that can be a factor.




On Tuesday, May 12, 2015 at 6:07:20 PM UTC-4, Kakyo wrote:
>
> I have a very long TWc tiddler that I cannot even open to edit after 
> upgrading (Firefox 37.0.2 with TiddlerFox).
> FF keeps telling me there is a script running and prompts me to stop it.
>
> How should I fix this?
>
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/32bec256-a654-4c30-9d63-bb814963a346%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Cannot edit a very long tiddler

2015-05-12 Thread Kakyo
By the way, if long tiddler is a realistic problem then I'm afraid this is 
going to create a lot of stress
when I write tiddlers, because I'll have to be conscious about the length 
of my text at all times.

I hope it's that I'm doing something terribly wrong.



On Tuesday, May 12, 2015 at 6:07:20 PM UTC-4, Kakyo wrote:
>
> I have a very long TWc tiddler that I cannot even open to edit after 
> upgrading (Firefox 37.0.2 with TiddlerFox).
> FF keeps telling me there is a script running and prompts me to stop it.
>
> How should I fix this?
>
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cdfb8b43-baa2-4fa3-830a-66d7c01e9394%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Cannot edit a very long tiddler

2015-05-12 Thread Kakyo
I have a very long TWc tiddler that I cannot even open to edit after 
upgrading (Firefox 37.0.2 with TiddlerFox).
FF keeps telling me there is a script running and prompts me to stop it.

How should I fix this?

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/24d8c974-66c7-4c38-b6e9-6b39347bee7e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Usability question: How to quickly switch between editing and reading modes with a long tiddler?

2015-05-12 Thread Kakyo
With TWc, I can make the tiddler as long as I like, and embrace this 
workflow:

   1. I read the tiddler that may last 10+ pages. 
   2. I suddenly want to add something to the page.
   3. I double-click any part of the paragraph view with my mouse and start 
   editing.
   4. I ctrl-enter to finish editing, get right back to where I was, and 
   continue reading.

Now with TW5, this becomes impossible: There is no double-click or any 
shortcut to edit in place. 
So if the article is too long, I'll have to scroll to the top, click the 
edit button, and pray I can get back to where I was.
I'll probably have to remember a unique keyword in order to do that.

Am I missing any alternatives to this workflow or is it intrinsically 
unsupported?
By the way, JIRA as a popular issue tracker supports this work flow in 
__ALL__ its edit boxes, 
which is amazingly neat.

Thanks a lot!

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bfa23c46-6e13-4052-81f4-951c5a17a278%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] How to open a tiddler in a new tab?

2015-05-12 Thread Kakyo
I found this TW in my previous question:

http://compare-tw2-tw5.tiddlyspace.com

Amazingly, all its tiddlers open as a new tab, which is so clean that I 
want to adopt myself.

Can anyone give me a pointer how to do it?

Thanks a lot!

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/672f643a-afd8-421c-9222-0078b08f1985%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: What's the best way to migrate from TW2 to TW5?

2015-05-07 Thread Kakyo
Thank you!
This is helpful.

On Thursday, May 7, 2015 at 7:34:37 PM UTC-4, PMario wrote:
>
> On Thursday, May 7, 2015 at 8:06:12 PM UTC+2, Kakyo wrote:
>>
>> As a TW2 user, I have a big legacy in my wiki already.
>> Is it possible to migrate everything to TW5 with minimum trouble?
>> If so, how?
>>
>
> IMO it depends a lot if you use a lot of 3rd party plugins, that modify TW 
> default wikitext syntax / rendering. .. 
>
> There are some changes in Wikitext too. So some search and replace will 
> need to be done. .. The biggest one is paragraph handling. 
>
> I did create some infos (for myself) 
> http://compare-tw2-tw5.tiddlyspace.com/ that may help you with the 
> wikitext changes. 
>
> -mario
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d90c4008-18a0-4e5c-93bb-693186cfe081%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] What's the best way to migrate from TW2 to TW5?

2015-05-07 Thread Kakyo
As a TW2 user, I have a big legacy in my wiki already.
Is it possible to migrate everything to TW5 with minimum trouble?
If so, how?

Thanks!

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/62f91858-26a5-4a12-b864-e277bb33c4b5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to create a global KeyboardWidget used by the entire wiki?

2015-03-05 Thread Kakyo
OK, glad that this thread is useful.
Well, I'm looking forward to my full adoption of TW5 once the global 
keyboard shortcut thing is in place.
Currently I found my mouse-free editing workflow with TWC is broken with 
TW5. 
Other than that I think the overall flexibility boost, the improved saving 
and exporting, etc. are a big plus to programmers.
I love the widgets and messages. 

On Thursday, March 5, 2015 at 1:45:20 PM UTC-5, Patrick Detzner wrote:
>
> My guess is (and I would love if someone could confirm this) that the 
> keyboard widget is only responsive when the focus is set to an element 
> which it contains.
> What worked for me was to go into the tiddler $:/core/ui/PageTemplate, 
> then change the relevant section to this:
> <$keyboard message="tm-new-tiddler" param="new title" 
> key="ctrl+shift+enter">
>
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/PageTemplate]!has[draft.of]]" 
> variable="listItem">
>
> <$transclude tiddler=<>/>
>
> 
>
> 
> The middle 3 lines were in the original, and I added the top and bottom 
> line to wrap the keyboard shortcut for the new tiddler around every tiddler 
> that is transcluded on the page.
> This is a really useful idea, I'm happy that you brought it up.
> Patrick
>
> On Thursday, March 5, 2015 at 11:58:29 AM UTC-5, Kakyo wrote:
>>
>> My browser is Safari 8.0.3
>>
>> On Thursday, March 5, 2015 at 11:54:56 AM UTC-5, Kakyo wrote:
>>>
>>> I just learned that keyboard shortcuts are created using KeyboardWidget.
>>> I also learned that one can create widget inside a tiddler.
>>> I now would like to create keyboard shortcuts that can work across the 
>>> whole wiki.
>>> Is this possible? I tried to add a KeyboardWidget this way in a tiddler, 
>>> but the shortcut is not responsive.
>>>
>>> Here is my code:
>>>
>>> <$keyboard message="tm-new-tiddler" param="new title" 
>>> key="ctrl+shift+enter">Hello Keyboard
>>>
>>> Anything wrong with the syntax or the overall approach?
>>>
>>> Thanks!
>>>
>>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: keyboard shortcut and mouse gestures?

2015-03-05 Thread Kakyo
Oh, that's sad because the double-click thing was so handy it became my 
second nature.
Hardly any aiming at all, so that's a classic user-friendly design 
according to Fitts's Law.

So there is no mouse gesture support at all in TW5 I guess?

On Thursday, March 5, 2015 at 2:00:03 PM UTC-5, Patrick Detzner wrote:
>
> I don't know about the double click thing, but one thing you could do is 
> add that button to the list of the buttons that appear on every tiddler. 
> Then it would be closer at hand.
>
> I like the potential for keyboard shortcuts. I'll have to play around with 
> that but give me a week or two and I may have a way for you to toggle the 
> sidebar with a keyboard shortcut.
>
> On Thursday, March 5, 2015 at 11:37:49 AM UTC-5, Kakyo wrote:
>>
>> I'd also like to know if there is a fast way to fold the sidebar other 
>> than by clicking that tiny little <<<  at the corner.
>>
>> On Thursday, March 5, 2015 at 11:36:09 AM UTC-5, Kakyo wrote:
>>>
>>> I used to be able to double click a tiddleler's editing area to start 
>>> editing it with TW classic.
>>> But with TW5, this doesn't work anymore.
>>>
>>> Is there a keyboard shortcut or mouse gesture for this?
>>> I searched in TW.com and found there are only two keyboard shortcuts 
>>> there.
>>>
>>>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to create a global KeyboardWidget used by the entire wiki?

2015-03-05 Thread Kakyo
My browser is Safari 8.0.3

On Thursday, March 5, 2015 at 11:54:56 AM UTC-5, Kakyo wrote:
>
> I just learned that keyboard shortcuts are created using KeyboardWidget.
> I also learned that one can create widget inside a tiddler.
> I now would like to create keyboard shortcuts that can work across the 
> whole wiki.
> Is this possible? I tried to add a KeyboardWidget this way in a tiddler, 
> but the shortcut is not responsive.
>
> Here is my code:
>
> <$keyboard message="tm-new-tiddler" param="new title" 
> key="ctrl+shift+enter">Hello Keyboard
>
> Anything wrong with the syntax or the overall approach?
>
> Thanks!
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] How to create a global KeyboardWidget used by the entire wiki?

2015-03-05 Thread Kakyo
I just learned that keyboard shortcuts are created using KeyboardWidget.
I also learned that one can create widget inside a tiddler.
I now would like to create keyboard shortcuts that can work across the 
whole wiki.
Is this possible? I tried to add a KeyboardWidget this way in a tiddler, 
but the shortcut is not responsive.

Here is my code:

<$keyboard message="tm-new-tiddler" param="new title" 
key="ctrl+shift+enter">Hello Keyboard

Anything wrong with the syntax or the overall approach?

Thanks!

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: keyboard shortcut and mouse gestures?

2015-03-05 Thread Kakyo
I'd also like to know if there is a fast way to fold the sidebar other than 
by clicking that tiny little <<<  at the corner.

On Thursday, March 5, 2015 at 11:36:09 AM UTC-5, Kakyo wrote:
>
> I used to be able to double click a tiddleler's editing area to start 
> editing it with TW classic.
> But with TW5, this doesn't work anymore.
>
> Is there a keyboard shortcut or mouse gesture for this?
> I searched in TW.com and found there are only two keyboard shortcuts there.
>
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] keyboard shortcut and mouse gestures?

2015-03-05 Thread Kakyo
I used to be able to double click a tiddleler's editing area to start 
editing it with TW classic.
But with TW5, this doesn't work anymore.

Is there a keyboard shortcut or mouse gesture for this?
I searched in TW.com and found there are only two keyboard shortcuts there.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to adjust the TW5 editing area widths?

2015-03-05 Thread Kakyo
Sorry for the typo, below is the correction:

This makes me wonder: Is there an easy way to make the editing area wider?
Because with most desktop monitor being widescreen, the default layout
does not look like the best use of the real estate.


On Thursday, March 5, 2015 at 11:12:59 AM UTC-5, Kakyo wrote:
>
> I'm considering switching to TW5 from TW2.
> But I found it interesting that the new default layout 
> is made so that over half of the screen width is devoted to the old 
> sidebar,
> while the main editing area shrinks to a much smaller column than before.
> I searched for different themes and they all look that way.
> This means me wonder: Is there an easy way to make the editing area wider?
> Because with most desktop monitor being widescreen, the default layout
> does look like the best use of the real estate.
>
> Thanks,
> K.
>
>
>

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] How to adjust the TW5 editing area widths?

2015-03-05 Thread Kakyo
I'm considering switching to TW5 from TW2.
But I found it interesting that the new default layout 
is made so that over half of the screen width is devoted to the old sidebar,
while the main editing area shrinks to a much smaller column than before.
I searched for different themes and they all look that way.
This means me wonder: Is there an easy way to make the editing area wider?
Because with most desktop monitor being widescreen, the default layout
does look like the best use of the real estate.

Thanks,
K.


-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.