-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
My subject line pretty much says it all. I would like to implement a
tab command that will delete the current line in a document. The
best that I have been able to do so far is to remove the text, but
not the line. I'd imagine that I could do it by iterating through
the document and deleting the line in some complicated script, but
I'm hoping for a simple solution. Is there a simple solution? Thanks.
Mike
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (Darwin)
iD8DBQFErf4M4oDM7Rgs0h0RAkjqAKCuq3kJUPlAF+u864DnZRidAaKk0gCfY2dK
q+LWd28wNst5yWCDjfR60HY=
=xuoQ
-----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I just implemented two new functions: cleanup and remove.
Cleanup moves all of the completed tasks (context = DONE) to the
bottom of a selected task list/project.
Remove removes all of the completed tasks in a selected task list/
project.
Alaskamike
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (Darwin)
iD8DBQFEuw+d4oDM7Rgs0h0RAvlBAJoCOi4ocGRwVG17zj3tTNYKvmSHRACgsv82
mJvfD1RdmUbJeiVyZJOOQSQ=
=3IKE
-----END PGP SIGNATURE-----
Anyone know what Application Allan is using for the screencasts? I'm
on short notice here and need to make several for a little "teaser".
Can't seem to find one I actually like.
Regards,
Eric
here are my two cents on the subject.
I'm plagued with a marked attention deficit :P, so when I found out
about WriteRoom I was sold on the idea of full-screen distractionless
editing.
now, I'm not too fond of feature requests, but I'd like allan to take
a look at WriteRoom and think about offering similar functionality
within TextMate (snippets + fullscreen = wow!) — megazoomer just
doesn't cut it, the whole text is jammed over the left border, too
ugly to be true!
on the other hand, since I first used a mac I expect the maximization
button to act like it does in Finder, i.e. increase window height
until the whole content is shown. that was the behaviour I got on
BeOS too (I was an eager BeOS user back in the day). I guess offering
those two modes (full screen and vertical window zooming) would be
very nice.
ciao,
domenico
Sorry about the subject.
The thing is, I type $('') quite a lot, so much that even a tab-
trigger isn't ideal. I'd like to have a key-trigger of $ to just
activate the thing. The dealbreaker though is that I also use $$
sometimes, and of course an american might use $ for some other reasons.
So I wonder, can you have some "smart" entering here, like the
parentheses in a way.
The behaviour I'd like is that if I just type $, it will expand to $
('$1')$0 (shorthand snippet syntax), but if I hit delete directly
after typing $, it will revert the thing to a simple $-character.
Hope I'm making myself clear :)
btw, Martin Ström, this could be integrated into your new prototype/
scriptaculous bundle ˆ_ˆ
Andreas
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have fixed the script for GeekTool export, so it works now.
Running the command (ctrl-shift-G) creates a file callled
"todoList.txt" in your GTD folder (whatever it is called). The all
you need to do in GeekTool is set up a shell command with:
cat /Users/foo/pathToGTD/todoList.txt
If you try it, please let me know how it works!
Alaskamike
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (Darwin)
iD8DBQFEuYyU4oDM7Rgs0h0RApQ9AJ9fhuGre1C1j5o2/bZiJXUjDXiFpACdFnxH
VBoQW0dECxmUix5YuVxmazI=
=/GZa
-----END PGP SIGNATURE-----
I have one request for the wonderful blogging bundle. I have come to
rely on it 100%, and today I ran into the following problem. I needed
to update a post that was not that long ago, but given the amount of
activity on my blog does not show up in the list of 20 newest posts
that "Fetch post" shows me. Is there a way to get "Fetch post" to
"move to the previous 20 posts" and so on?
Or perhaps a way to search for a post to fetch by name?
Haris
Hi all,
Previous conversations on related topics to this don't seem to answer
the question (correct me if I'm wrong!), so:
Can I turn the input to a command script into a shell variable, i.e.
is there a UNIXy way of reading stdin into a variable?
To be more concrete, I have a simple command for looking up the
current word in the R help files (which are in HTML) and displaying
the page in TM's browser. The basic command is
#! /usr/bin/ruby
text = STDIN.read
file = `find /Library/Frameworks/R.framework/Versions/Current/Resources/library
-name #{text}.html -print`
html = `cat #{file}`
print html
This works, but seems like an inelegant solution, and for more complex
tasks it would be useful to know how to avoid needing ruby and make
this something like
var=[something]
cat `find /Library/Frameworks/R.framework/Versions/Current/Resources/library
-name $var.html -print`
TIA!
Jon
I've just added the following command to my Sweave bundle for using
the command line interface to R rather than the GUI:
M=${TM_SWEAVE_WD:=${TM_DIRECTORY}}
echo -e "setwd('$M')\nSweave('$TM_FILEPATH')" |
"$TM_BUNDLE_SUPPORT/../../R.tmbundle/Support/tmR.rb"
Note this assumes both R and Sweave bundles are located in the same
directory. The /../../ is to back up from the Sweave bundle Support
directory and go into the R bundle Support directory.
Command output should be set to "Show as HTML"
I have only tested this on example-1.Snw