Hi, I have just set up TM on a new MacBook and I am having some
problems with the Ref-TeX citation command. For some reason it cannot
seem to find my bib file. I keep my bib file in a git repository and
link it to ~/Library/texmf/bibtex/bib. I thought that the command my
be having trouble following the soft link, so I set the shell variable
TM_LATEX_BIB to the source of the link, but I am still getting a
message that no bib file is found there. :? Any help would be
appreciated in resolving this. All the ebst, Mark
TextMate is a good value. It's a small, fast editor and it makes me
feel productive. Can't wait to see what's under the hood in 2.0.
I was just thinking about what I like in editors, and I still use
Emacs and Eclipse depending on the project. I am switching to TextMate
for a lot of other stuff.
I probably would be using SlickEdit right now- it's a favorite! Except
it's expensive and it runs in X11 on Mac; it's not a native Mac UI.
Feature I really like from SlickEdit are:
* symbol/tagging system. I forget what they call it, but it can
generate symbol lists to use for auto-complete and context help, for
various different languages.
* keybinding emulation modes; e.g it has Emacs and a handful of others.
But anyways I encourage Allan to make 2.0 the most awesome editor he
can, and not spend too much time on everything and the kitchen sink -
feature requests. Like the above, right ;-) Otherwise you end up with
a Christmas Tree, not a lean & mean text editor.
Cheers
Here's a quick Textmate command I made to open the file you're working
on in BBEdit:
#!/bin/sh
# Open the current file in BBEdit
bbedit +$TM_LINE_NUMBER $TM_FILEPATH
I created it as a command, with options "Save current file", Input:
"Entire Document" Output: "Discard" and I added the F8 shortcut
I put this in the scope selector:
source.php, source.css, string, text.html, text.csv, text.plain
I made it after Maarten Sneep made an "open in textmate" on the google
bbedit list. Maybe someone will find it useful.
Here's my original post with the opposite script (which unfortunately
has a habit of locking textmate randomly every once in a while)
http://groups.google.com/group/bbedit/browse_thread/thread/7de49fa457826f3c
Nevan
Hello All,
New to TextMate and love it so far.
I'm wondering if there is an existing bundle or method that will allow me to
generate a new HTML document from a parsed PHP file? I'd like to be able to
generate HTML files based on a local PHP file reading from an XML to
generate pages quickly to post to a server that doesn't support server-side
technology.
This also would be great for building HTML emails from a XML file in
conjuction with the Email Tester bundle.
I would love to get any feedback or tips from the community on this.
Cheers,
Michael R
--
View this message in context: http://www.nabble.com/Generate-new-HTML-doc-from-parsed-PHP--tp20135499p201…
Sent from the textmate users mailing list archive at Nabble.com.
Hi
a very important issue is how to name a tmbundle hosted by github. I
received a mail mentioning that a bundle won't listed in GetBundles.
What I'm doing is the following:
I call:
http://github.com/api/v1/yaml/search/tmbundle
to get these bundles plus author and description from the github host.
'tmbundle' is, I guess, a unique name to identify a TM bundle.
That's why it is necessary to name a tmbundle like:
copy-as-rtf-tmbundle
ruby-c-extensions-tmbundle
merb-tmbundle
...
which will be renamed to
Copy as Rtf.tmbundle
Ruby C Extension.tmbundle
Merb.tmbundle
...
E.g.
subtleGradient's javascript.tmbundle
or
contextgarden's context-bundle
or
shoes-textmate-bundle
won't be found.
And the next thing is to provide a good description. Not something like:
The name says it all. ;)
Could this be achieved?
Suggestions?
--Hans
I am a passionate devotee to TM but I notice that latex compiles much
faster on TexShop than in TM.
Is there something I can do to improve the performance of TM?
TM takes 4-6 seconds to compile and display on skim.
TexShop takes 2-3 seconds.
Related to this is the question whether one can use a DVI viewer on
the Mac instead of pdf in order to speed things up.
I ask all this because a colleague whom I persuaded to move to the Mac
finds TM inordinately slow and wants to go back to Winedt on windows
because she finds the speed unbearable.
Thanks,
Christopher
Is there a way to bind the menu item ^Q (reformat selection) to the
reformat selection for the active bundle of doing paragraph formatting
on the selection ?
Hello all,
I've just released a new TextMate bundle which makes easy to compress
multiple CSS and JavaScript files with YUI Compressor, right from within
TextMate.
The bundle is attached, and I've also put together a short screencast (4
minutes) covering setup, configuration, and usage (http://bit.ly/2WzHlf).
I hope you find it useful, and if you have any feedback or suggestions for
improvement please don't hesitate to chip in.
Cheers,
Stephen
http://www.nabble.com/file/p20210869/yui-compressor-tmbundle.zip
yui-compressor-tmbundle.zip
--
View this message in context: http://www.nabble.com/New-YUI-Compressor-TextMate-Bundle-tp20210869p2021086…
Sent from the textmate users mailing list archive at Nabble.com.
> Ola!
>
> I used to want this features as well, and I was really frustrated
> that you have to include CTRL to have this feature.
> CTRL-page-up and CTRL-page-down.
> Now that I'm used to it, I would not see it any other way. When
> you're coding in a certain method and you quickly want to see
> something in f.e. a private method, using page-up and page-down can
> bring you to the implementation and if you know what parameter to
> use, you immediately can start typing, since the cursor did not move
> with it.
>
> And getting used to the CTRL was a matter of 1 day.
>
> Best regards,
> Jeroen.
> nerd.rb - http://www.rubyonrailsforum.nl - http://www.vici-nl.com
>
> > Hi!
> >
> > Can I make the cursor follow when I've done some scrolling via Page-
> > Up/
> > Page-Down?
> >
> > I mean... let's say: I've scrolled down 3 pages via Page-Down and
> now
> > I want to go on editing right on this page.
> > To do so, I must click with the mouse somewhere on the document. But
> > is this possible by using the keyboard too? E.g., is there a
> Shortcut
> > that positions the cursor right in the middle of displayed page?
>
> You can use shift-cmd-j to move the cursor to the Middle Visible Line.
> Also accessible in the 'navigation' menu.
>
> Cheers,
> Nigel
Hi all
I was looking for a quick way to go to the start of a scope. I often find
myself selecting something, then typing a start bracket to wrap that
selection in brackets:
strpos($key, ".") +1
becomes
(strpos($key, ".") +1)
which leaves my cursor just after the closing bracket. If I want to get back
to before the opening bracket, I usually alt-left arrow. I could also go
just inside the closing bracket, hit cmd-shift-b to select the whole scope
and then click left arrow once, but it's too many keys. Is there a way to
navigate bounds?
Thanks
Nevan