The new feature: mate --project $(uuidgen|tr -C $'\n-' 0) file.txt is broken as it echoes:
$ mate --project 00000000-0000-0000-0000-0000000000000 xcrash.C uuid_t: error parsing ‘00000000-0000-0000-0000-0000000000000’
and does not open in a new window. Also the alternative:
$ TM_PROJECT_UUID=00000000-0000-0000-0000-000000000000 mate xcrash.C uuid_t: error parsing ‘00000000-0000-0000-0000-0000000000000’
does not work anymore.
In addition the —-project option is not documented in mate --help, where it still is documented as —uuid.
Please fix as my workflow pretty much depends on it.
Cheers, Fons.
-------------------------------------------------------------------------- Dr. Fons Rademakers CERN - European Organization for Nuclear Research Chief Research Officer 1211 Geneve 23, Switzerland CERN openlab Tel: +41227679248 Mobile: +41754113742 --------------------------------------------------------------------------
On 1 Jun 2016, at 18:58, Fons Rademakers wrote:
The new feature: mate --project $(uuidgen|tr -C $'\n-' 0) file.txt is broken as it echoes:
$ mate --project 00000000-0000-0000-0000-0000000000000 xcrash.C uuid_t: error parsing ‘00000000-0000-0000-0000-0000000000000’
What is your OS version? For me it works on 10.11.5. As your error is from a system call, it could indicate that the issue is related to OS version.
In addition the —-project option is not documented in mate --help, where it still is documented as —uuid.
The --uuid option is different as that is for referencing a specific document. You are correct though that --project is currently undocumented.
Hi Allan,
I am also on OSX 10.11.5.
I was using till the latest upgrade this:
alias mate='TM_PROJECT_UUID=$(uuidgen) mate’
and that was always working fine. Now it does not work anymore. I assume the —uuid should also be 0 to make it work as before? But it gives the same uuid_t parsing error.
Cheers, Fons.
On 2 Jun 2016, at 07:25, Allan Odgaard mailinglist@textmate.org wrote:
On 1 Jun 2016, at 18:58, Fons Rademakers wrote:
The new feature: mate --project $(uuidgen|tr -C $'\n-' 0) file.txt is broken as it echoes:
$ mate --project 00000000-0000-0000-0000-0000000000000 xcrash.C uuid_t: error parsing ‘00000000-0000-0000-0000-0000000000000’
What is your OS version? For me it works on 10.11.5. As your error is from a system call, it could indicate that the issue is related to OS version.
In addition the —-project option is not documented in mate --help, where it still is documented as —uuid.
The --uuid option is different as that is for referencing a specific document. You are correct though that --project is currently undocumented.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
-------------------------------------------------------------------------- Dr. Fons Rademakers CERN - European Organization for Nuclear Research Chief Research Officer 1211 Geneve 23, Switzerland CERN openlab Tel: +41227679248 Mobile: +41754113742 --------------------------------------------------------------------------
Ok, some information. It seems now to work again using beta.9.3 (error was with beta.9.2).
TM_PROJECT_UUID=00000000-0000-0000-0000-000000000000 mate bla.cxx
this opens bla.cxx in a new window each time, just like
mate —project 00000000-0000-0000-0000-000000000000 bla.cxx
Cheers, Fons.
On 2 Jun 2016, at 10:03, Fons Rademakers Fons.Rademakers@cern.ch wrote:
Hi Allan,
I am also on OSX 10.11.5.
I was using till the latest upgrade this:
alias mate='TM_PROJECT_UUID=$(uuidgen) mate’
and that was always working fine. Now it does not work anymore. I assume the —uuid should also be 0 to make it work as before? But it gives the same uuid_t parsing error.
Cheers, Fons.
On 2 Jun 2016, at 07:25, Allan Odgaard mailinglist@textmate.org wrote:
On 1 Jun 2016, at 18:58, Fons Rademakers wrote:
The new feature: mate --project $(uuidgen|tr -C $'\n-' 0) file.txt is broken as it echoes:
$ mate --project 00000000-0000-0000-0000-0000000000000 xcrash.C uuid_t: error parsing ‘00000000-0000-0000-0000-0000000000000’
What is your OS version? For me it works on 10.11.5. As your error is from a system call, it could indicate that the issue is related to OS version.
In addition the —-project option is not documented in mate --help, where it still is documented as —uuid.
The --uuid option is different as that is for referencing a specific document. You are correct though that --project is currently undocumented.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
Dr. Fons Rademakers CERN - European Organization for Nuclear Research Chief Research Officer 1211 Geneve 23, Switzerland CERN openlab Tel: +41227679248 Mobile: +41754113742
-------------------------------------------------------------------------- Dr. Fons Rademakers CERN - European Organization for Nuclear Research Chief Research Officer 1211 Geneve 23, Switzerland CERN openlab Tel: +41227679248 Mobile: +41754113742 --------------------------------------------------------------------------
On 2 Jun 2016, at 10:19, Fons Rademakers wrote:
Ok, some information. It seems now to work again using beta.9.3 (error was with beta.9.2).
I think the error was with your UUID, re-reading your first email, there was a zero too many in the UUIDs you quoted. I assume you didn’t try the `uuidgen|tr …` example you quoted from the change log, which should have worked for you.