Re: [twdev] Re: [TW5] Link completion Editor

2015-12-28 Thread Alain Dutech
Sorry... too fast. Taking some steps outside gave me the solution : I forgot some ":" at a file name. But, another problem : In node.js, the following line is causing problem var isFirefox = *window*.mozInnerScreenX != null; because, I guess, the global var *window* is only defined if using a

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-28 Thread Alain Dutech
@Felix : thx for the suggestion and the link to Danielo's work. @All : I have a problem "compiling" my files into a proper plugin ~/Projets/TW5[master] =*> nodejs ./tiddlywiki.js editions/tw5.com --build index* Error executing boot module

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-28 Thread Felix Küppers
Hi Alain, > because, I guess, the global var *window* is only defined if using a > browser. > > What is the usual way of dealing with this within node.js ?? It is not good style that the lib assumes the window object exists while it is loaded. Not sure how you can solve this. I would suggest

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-28 Thread Alain Dutech
Ah, damn, I forgot to tell that a small configuration is required for the editor to kick in... In $:/ControlPanel -> Advanced -> Editor Type -> text/vnd.tiddlywiki you must chose *comptext* instead of *text*. I'll add it at once. Alain On Mon, Dec 28, 2015 at 7:15 PM, Felix Küppers

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-28 Thread Alain Dutech
@Felix : thank you a lot, indeed. I've used $tw.browser. And now, the version 1.0 of the plugin is officially available to try and download at http://snowgoon88.github.io/TW5-extendedit And the source is at https://github.com/snowgoon88/TW5-extendedit/ Enjoy, comment and critic :o) Alain On

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-28 Thread Felix Küppers
Hi Alain, Nice that $tw.browser was what you needed. Following your instructions using FF and Chrome on Linux didn't work in your latest demo, nothing happened :( -Felix On 12/28/2015 04:48 PM, Alain Dutech wrote: > @Felix : thank you a lot, indeed. I've used $tw.browser. > > And now, the

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-27 Thread Alain Dutech
Oh, thanks a lot BJ. I'll send you another version soon. Taking care that is works also on Chrome :o) Alain On Sun, Dec 27, 2015 at 2:27 AM, BJ wrote: > Hi Alain, > the statement (default function parameter ) is not supported by chrome > until version 49 according to

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-27 Thread Felix Küppers
Hi Alain, very glad you picked this up. Would be great if you could also add an autocompletion trigger. When I am inside a word that starts with `[[abc` and I hit a keycombo, then the list pops up with tiddler names matching "abc". In IDEs (Eclipse, Netbeans, Atom, Geany etc.) it is a

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-26 Thread Alain Dutech
Yop, it doesn't work on chromium-browser + Linux But I have no clue. Alain On Sat, Dec 26, 2015 at 11:50 AM, Alain Dutech wrote: > Well... It works here on Linux+Firefox and Win7+Firefox with the file > attached in my first mail. > Compatibility I guess... > > Any hints?

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-26 Thread Tobias Beer
Forgot to mention,I get the error on both WIN10 or Vista + Chrome. Works in Firefox, sort of. Would be nice to be able to access the popup using (arrow) keys, rather than the pointer. Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups

[twdev] Re: [TW5] Link completion Editor

2015-12-26 Thread Tobias Beer
Hi Alain, Curious to see this work. However, for now I get this: Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups

Re: [twdev] Re: [TW5] Link completion Editor

2015-12-26 Thread BJ
Hi Alain, the statement (default function parameter ) is not supported by chrome until version 49 according to firefox so nbMax=2 is causing the problem all the best BJ On Saturday, December 26, 2015 at 12:35:07 PM UTC, Alain Dutech wrote: > > Yop, it doesn't work on chromium-browser + Linux >