Hello Allan,
I found this on the net today:
http://www.simplehelp.net/2008/04/24/how-to-blurminal-your-os-x-terminal/
Its a hack of the terminal via SIMBL giving transparent backgrounds of
Terminal a 'blur effect'.
For a certain degree 'blurring backgrounds' improve usability, instead
of being GUI-toy only.
Also, it would integrate well into GUI changes of OSX that came with
Leopard.
Could something similar be on the roadmap?
BTW: This 'blurring' effect could be accompanied (fo' tha freakanoidz)
by effects like 'invertation of the background', making it B/W or
applying textures to it.
And Im thinking these kinds of effects will be supported by Core
technology, having in mind that you stated TM2.0 will be absolutly
build on core libraries of OSX 10.5 Leopard :0)
Thanks in advance!
Dennis
ps: But I also have in mind that you dont think TM will have its own
background-images, so I consider that you dont put any priority on
these GUI things :0(
Hi!
At time I have no Mac as a laptop and therefore I use emacs when I'm
not in front of my iMac. I just found out that emacs has quite a
simple but cool outline-mode and wanted to ask if it is already ported
to TextMate. Does anybody know?
Niels
Greetings,
When I google the two terms "bbedit balance" (without the quotes) and
the resulting search ranks a textmate mailing list post as #1, I start
thinking, "I wonder if Allan is aware of this?"
I checked previous discussions (but only through 2006) to see if
anything had developed in the realm of balancing braces in the way that
"the app formerly known as the mac programmers first choice" did, back
in the day. And by the looks of things, I see only heavyweight solutions
to balance tags, which I believe is way more than I need and possibly
not what I want.
I also think it's undesirable to download an eval copy of "the app
formerly known as the mac programmers first choice" for this feature.
Perhaps my Christmas wish will be:
Oh please,
Oh please,
Deliver command b,
Under the tree.
Cheers!
the nameless popular programmers
On Apr 30, 2008, at 07:00, Jacob Rus wrote:
> Whether this will be implemented any time soon, or ever, is an open
> question, but several months ago we had some good discussions on
> ##textmate about how to make the most incredible indented softwrap
> the world has ever seen.
Is that conversation archived anywhere? I'd be curious to know what
people were attempting and what they were able to achieve.
Hi,
Creating a nomenclature with nomencl needs to invoke MakeIndex with
the following:
makeindex ⟨filename ⟩.nlo -s nomencl.ist -o ⟨filename ⟩.nls
The *.nlo file is successfully created after running LaTeX and I would
like invoke MakeIndex as I do it when compiling the document with LaTeX.
How could I do that?
Thanks in advance,
Christian
Hi,
When I work with new projects I often orientate on old ones. Therefore
I include these old files in the project drawer within my new project.
Often I copy something from the old ones. To prevent the old
(original) files from being changed during that, is there way to lock
it or give only rights for reading to it?
Thanks in advance
Christian
Hello,
For my glossary I use the package gloss. After a LaTeX run of the
document gloss creates a .gls.aux is created. In need to invoke BibTeX
on that file and would like to it with a nice shortcut as I do it when
using the command+L for creating my bibliography.
How could this be done with TextMate?
Thanks in advance,
Christian
Hi,
what is the best way to detect whether only DIALOG1 is available or
DIALOG2?
Up to now I would do this by checking whether the shell variable
DIALOG_1 is set. If yes I can use DIALOG2 features, if not I have to
use DIALOG1 syntax.
But I do not know whether there will be a change in the near future?
Thanks,
--Hans
Hi
the original command to get man doc from Tcl commands in Tcl mode was
broken (at least in my system -with Developer Tools installed) I have
simplify it to a simpler and working script borrow from the Shell
script mode one:
----------------
word=${TM_SELECTED_TEXT:-$TM_CURRENT_WORD}
try_man () {
if man n -w "$word" &>/dev/null; then
page=$("$TM_SUPPORT_PATH/bin/html_man.sh" n "$word")
echo "<meta http-equiv='Refresh' content='0;URL=tm-file://$page'>"
exit_show_html
fi
}
try_man
echo "Couldn’t find documentation in 'man n' for “${word}”"
-----------------
- Juan Falgueras
Hi everyone,
Well here it goes. I am using TextMate to create ruby code. I can run
the scripts from the command line without issue. However when I run
the same script from with TextMate using command-R I end up with an
error stating it can not find the installed files seen from the
command line. I would appreciate any help with figuring this out.
Having quite a bit of editing to do in the future I would prefer to
remain in the same environment and not have to switch back and forth
during the development.
John Hannah