hello:)
I would like to use Quick Look with .tex , .sty , .cls files created
with TextMate but all the hacks found on the net or in the list
don't work.
Do you know a good way to make this ?
Best Regards
Alain
Hi,
I occasionally need to hard wrap text, meaning that carriage returns
are inserted to make the text wrap at a certain column. The Text
bundle has a command to do this; it's called "Reformat to Column".
Because of this unorthodox name, I always have trouble searching for
it because I expect the command to have the word "hard" or "wrap" in
it. Could it be changed? For example, I noticed that the "Statistics
for Document" command has "(Word Count)" in parentheses because few
people wanting to find a word count command would search for the word
"statistics". And I suspect few people wanting to find a hard wrap
command would search for the word "reformat". How about renaming the
command to "Reformat to Column (Hard Wrap)"?
Trevor
You can edit the tidy configuration in TextMate. Open the bundle editor and
find Tidy in the HTML section.
I altered mine to this:
> # BEWARE. Errors are suppressed.
> "${TM_TIDY:-tidy}" -f /dev/null -q --indent auto -utf8 -wrap 0
> --wrap-attributes 0 --break-before-br 1 --clean y --word-2000 y --tab-size
> $TM_TAB_SIZE --indent-spaces $TM_TAB_SIZE|\
> if [[ "$TM_SOFT_TABS" == "YES" ]]; then cat; else ruby -pe '
>
> unless $in_pre
> tab_size = ENV["TM_TAB_SIZE"].to_i
> space, text = /( *)(.*)/m.match($_)[1..2]
> $_ = "\t" * (space.length / tab_size).floor +
> " " * (space.length % tab_size) + text
> end
>
> $in_pre = true if(/<pre>/)
> $in_pre = false if(/<\/pre>/)
> '
> fi
>
You can play with your own preferences to make it like you like it. The
docu is:
http://tidy.sourceforge.net/docs/quickref.html
Tidy is handy, but I haven't been able to make it work exactly like I like
(HTML tidy or Perl tidy), but it's at least close.
I did check to see if your line would be broken up, and it was not.
tigercore wrote:
>
> The HTML Tidy function used to tidy the code in this format:
>
> <p>Paragraph Text here</p>
>
> but not for some reasons its doing it like this:
>
> <p>
> Some text here
> </p>
>
> And putting everything on a new line. It's also changing the doctype from
> XHTML Transitional to XHTML Strict.
>
> Anyone know why it's doing this? Is it a preference or somhing I have
> changed somewhere?
>
>
--
View this message in context: http://www.nabble.com/HTML-Tidy-Weirdness-tf4771947.html#a13907232
Sent from the textmate users mailing list archive at Nabble.com.
[I'm reposting for a third time, since I wasn't subscribed at first, then I
reposted as a subscriber, then deleted my *accepted* post. N00b. :confused:]
I created a bundle command to open a file from a repository directory, based
on the selected text. It was put in the Text bundle, with no particular
context.
Here's my current (working) command.
open "file:///path/to/repository/volume/$TM_SELECTED_TEXT.pdf"
This will open the PDF file with the selected filename. (I use open since I
want to see the PDF in Acrobat, not TextMate.)
However, now there's arbitrary (unknown) text attached to the filename, so I
want to use a wildcard in this command.
I got a suggestion to use an unquoted * as a wildcard. But if AAAA is
selected, this command:
open "file:///path/to/repository/$TM_SELECTED_TEXT"*
will open a file in Textmate named AAAA*, which is not what I want: I want
AAAA.pdf and AAAA-morestuff.pdf to open.
Any help is appreciated.
Thanks
Darryl
[I originally had this question attached as a comment to a TextMate blog
entry, where Allen Odegaard posted the * wildcard suggestion, but it didn't
work in this context.]
--
View this message in context: http://www.nabble.com/repost%3A-Command-to-open-arbitrary-files-in-TxMt-tf4…
Sent from the textmate users mailing list archive at Nabble.com.