(Apologies for opening a new thread - I intended to read the list only online but now I see that if I do that I cannot hit reply…)
Thanks, Matt. So I suppose that means it doesn't happen only on my machine.
> Though I notice it isn't round-tripping correctly either, e.g. the iotas are not being re-subscripted... I suppose that's a limitation of Unicode itself, though.
Correct - that's actually (for me) the intended behaviour since it allows me easily to convert subscript iotas to adscript ones.
But the important thing is that it's not limited to iota subscripts. Take the following two words from the text quoted in the earlier post:
ἀλλοῖα αὐτὸϲ
Capitalized:
ἈΛΛΟΙ͂Α ΑΥ̓Τ
Decapitalized:
ἀλλοῖα αὐτ
These are not isolated cases. For example, any text from the Thesaurus Linguae Graecae (www.tlg.uci.edu/demoinfo/demoauthors.php) will do.
Take Matt's credo, as it appears on the website:
Πάντες ἄνθρωποι τοῦ εἰδέναι ὀρέγονται φύσει. σημεῖον δ’ (21) ἡ τῶν αἰσθήσεων ἀγάπησις· καὶ γὰρ χωρὶς τῆς χρείας ἀγαπῶνται δι’ αὑτάς, καὶ μάλιστα τῶν ἄλλων ἡ διὰ τῶν ὀμμάτων. οὐ γὰρ μόνον ἵνα πράττωμεν ἀλλὰ καὶ μηθὲν μέλλοντες πράττειν τὸ ὁρᾶν αἱρούμεθα ἀντὶ πάντων ὡς εἰπεῖν (25) τῶν ἄλλων.
Capitalization, followed by decapitalization, results in a net loss of two words and one period - and there were no iota subscripts:
πάντες ἄνθρωποι τοῦ εἰδέναι ὀρέγονται φύσει. σημεῖον δ’ (21) ἡ τῶν αἰσθήσεων ἀγάπησις· καὶ γὰρ χωρὶς τῆς χρείας ἀγαπῶνται δι’ αὑτάς, καὶ μάλιστα τῶν ἄλλων ἡ διὰ τῶν ὀμμάτων. οὐ γὰρ μόνον ἵνα πράττωμεν ἀλλὰ καὶ μηθὲν μέλλοντες πράττειν τὸ ὁρᾶν αἱρούμεθα ἀντὶ πάντων ὡς εἰπεῖν (25)
Hi,
since I’m running several scripts/programs/etc. simultaneously with TM2, today I came across with an issue. I started two scripts with the same name “build.sh” but stored in different folders. After a period of time I realised that I missed something in one of the “build.sh” scripts and I wanted to stop it but I couldn’t see which of the window I should close since the headers of both windows were identical.
Would it be possible to add an hover effect or a new line mentioning the path or … to the runner window?
Thanks in advance,
Hans
Hi,
often I’m dealing with very large text files (~ 1GB) which are listed in my working folder. It can happen by accident that I click at such a big file and TM2 will become unresponsive for a while.
Would it be possible to at least add an alert or warning - which can cancel the opening process - if TM should open a big file (let’s say larger than 150MB - since TM2 works better with larger files than TM1.5)? Another idea would be to allow the cancellation of such a opening process by pressing CMD+W or whatever.
In addition to that:
I had opened some files and by accident I opened such a 1.4GB file. Ok, I killed TM2, and I reopen it while pressing SHIFT to avoid restoring the opened files. Fine, but then if I choose to open my working folder again, TM2 remembers all opened files (which is really cool) but it tries again to load this big file. My only workflow I’m aware of was to rename that big file temporarily after killing TM2.
Kind regards,
Hans
> On 12 Jun 2014, at 8:57, David Hislop wrote:
>
> > These changes didn't fix the problem but at least showed that
> > SecItemImport was returning errSecAddinLoadFailed. On a hunch, I
> > changed both &type and &format to pass the "unknown" enum and that
> > fixed the problem.
> >
> > […] I have no idea why this was a problem for me and not for others.
>
> What OS are you using?
>
> And you’re correct about the errors you found, I’ll get that fixed,
> thanks!
OS X 10.8.5
regards - David
Hi,
A long while ago Michael Sheets presented some designs for new TM2 header (tabs). However long time passed and there is no advancements in this subject. I wish to ask whether can we expect some activity, especially when Yosemite is commit and TM2 tab bar looks really bad in 10.10.
Cheers,
--
Adam
Dear all, I'm having the following error after running. Does anyone know how I can work around it?
sh: plutil: command not found Traceback (most recent call last): File "/Users/daniel/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/bin/texMate.py", line 479, in tmPrefs = tmprefs.Preferences() File "/Users/daniel/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/bin/tmprefs.py", line 51, in __init__ self.prefs.update(self.readTMPrefs()) File "/Users/daniel/Library/Application Support/TextMate/Managed/Bundles/LaTeX.tmbundle/Support/bin/tmprefs.py", line 78, in readTMPrefs plist_str = open('/tmp/tmltxprefs1.plist').read() IOError: [Errno 2] No such file or directory: '/tmp/tmltxprefs1.plist'
Dear all,
First of all, thank you to the developers for the hard work they put on
Textmate! I have been using it since 2009, when you had to pay for it, and
since then I have convinced about 5 people to use it.
Say that I am editing a C/C++ file, with plenty of nested loops and "if"
conditions. Is there a command to show an outline of these scopes and at
which level the caret is in such hierarchy? For example, if the caret is
inside this nested loop:
void func (int N) {
if (N<10) {
for (int i=0, i<N, i++) {
for (int j=0, j<N, j++) {
for (int k=0, k<N, k++) {
printf ("%g\n", i*j*k);
<caret is here>
}
}
}
}
} // end of func
I know that I can find the function name in the status bar, or by pressing
cmd+shift+t, but I am not aware about a command that would tell me that I am
in the *k-j-i* loop of the *if(N<10)* branch. This would be very handy as
some codes make heavy use of nested loops.
Thank you for your attention,
Guido
--
View this message in context: http://textmate.1073791.n5.nabble.com/Show-current-scope-block-but-not-Text…
Sent from the textmate users mailing list archive at Nabble.com.
Thank you Gildas.
1. Regarding templates: I'm not sure the following method is helpful, but I
> keep LaTeX templates in ~/Library/Application Support/LaTeX/Templates
> and in TextMate simply save a new document as file.tex, type temp + tab to
> choose one of my templates.
Re #1: This was what I did for years. The temp + tab function no longer
works. I get the message ``Failure running ``Latex Template'' LaTeX
Template:11:in `to_plist': no implicit conversion of Array into String
(TypeError) from LaTeX Template:11:in `<main>' ''
Previous text mate list entries indicate that the template function is
discontinued and that snippets should be used instead.
2. For snippets: when you are in "Edit Bundle", hit Command N, choose
> snippet, enable the item on the right, name it what you want, scope
> selector is text.tex.latex, choose key or tab trigger, write your template
> in the window at the bottom, save.
Re #2: Thank you! This is exactly what I want.
It still seems that I cannot delete old snippets or move them to other
areas of the bundle?
On Thu, Jun 5, 2014 at 8:00 AM, <textmate-request(a)lists.macromates.com>
wrote:
> 1. Regarding templates: I'm not sure the following method is helpful, but
> I keep LaTeX templates in ~/Library/Application Support/LaTeX/Templates
> and in TextMate simply save a new document as file.tex, type temp + tab to
> choose one of my templates.
>
> 2. For snippets: when you are in "Edit Bundle", hit Command N, choose
> snippet, enable the item on the right, name it what you want, scope
> selector is text.tex.latex, choose key or tab trigger, write your template
> in the window at the bottom, save.
>
> --Gildas
>
I want to further add, how do I delete old snippets/commands/bundles as
well. This does not seem possible within the TextMate Edit Bundle item.
E
On Wed, Jun 4, 2014 at 2:47 PM, <textmate-request(a)lists.macromates.com>
wrote:
> Send textmate mailing list submissions to
> textmate(a)lists.macromates.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.macromates.com/listinfo/textmate
> or, via email, send a message with subject or body 'help' to
> textmate-request(a)lists.macromates.com
>
> You can reach the person managing the list at
> textmate-owner(a)lists.macromates.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of textmate digest..."
>
> Today's Topics:
>
> 1. How to Create a Snippet to Replace a LaTeX Template (E. Enriquez)
>
>
> ---------- Forwarded message ----------
> From: "E. Enriquez" <enriquez.elaine(a)gmail.com>
> To: textmate(a)lists.macromates.com
> Cc:
> Date: Wed, 4 Jun 2014 14:47:07 -0400
> Subject: [TxMt] How to Create a Snippet to Replace a LaTeX Template
> Hello,
>
> I'm suffering without the ability to immediately insert a LaTeX template.
> I understand the recommended practice is to create a snippet (which, in
> this case, will be quite large). Could someone point me to the instructions
> to or provide me with the instructions to create snippets for LaTeX in TM2?
> Further, it is not clear how to enter a snippet into the document.
>
> I have got to the "Edit Bundle" menu item but there is nothing like the
> screenshot from the online TextMate (
> http://manual.macromates.com/en/snippets). I've attached what I see to
> this email.
>
>
>
> _______________________________________________
> textmate mailing list
> textmate(a)lists.macromates.com
> http://lists.macromates.com/listinfo/textmate
>
Hello,
I'm suffering without the ability to immediately insert a LaTeX template. I
understand the recommended practice is to create a snippet (which, in this
case, will be quite large). Could someone point me to the instructions to
or provide me with the instructions to create snippets for LaTeX in TM2?
Further, it is not clear how to enter a snippet into the document.
I have got to the "Edit Bundle" menu item but there is nothing like the
screenshot from the online TextMate (
http://manual.macromates.com/en/snippets). I've attached what I see to this
email.