Allan,
do you think you could change the filter list in the bundle editor so
there is a chance for bundle developers to provide a short
description of each bundle? Either via ToolTip or an extra column in
that listing?
And speaking of cool stuff for bundle developers: is there any chance
of having bundle developers create custom file icons? ;)
Dan
When I write LaTeX files I run "Typeset & Preview" quite alot, and
therefore was annoyed by the fact that I manually have to scroll the
preview window to the current line in my TextMate.
Hence I customized the "Typeset & Preview" command using TeXniscope's
quite useful AppleScript interface. I replaced the line
--- start ---
open -a "$V" "$PDF"
--- end ---
with
--- start ---
open -a "$V" "$PDF"
osascript << EOF
tell application "TeXniscope"
refresh the front document
the front document goto line $TM_LINE_NUMBER of source "$TM_FILEPATH"
end tell
EOF
---- end -----
Perhaps you find that useful.
Michael,
i saw in the change logs that you added these patterns to the Rails
bundle. But your changes did not come through for some reason...
Could you pls resubmit? Thank you.
Sebastian
On Jul 2, 2006, at 5:47 PM, Sebastian Friedrich wrote:
> the new Ruby folding patterns Allan added are really useful, but
> why are they not inherited by the ruby.rails scope? could anybody
> with commit rights fix that? Thanks. Sebastian
>
> ______________________________________________________________________
> For new threads USE THIS: textmate(a)lists.macromates.com
> (threading gets destroyed and the universe will collapse if you don't)
> http://lists.macromates.com/mailman/listinfo/textmate
>
I haven't seen this reported before, but when I fetch a post in the
blogging bundle (from wordpress 1.5), the top of the file has this:
> 2006-07-01 20:23:44.729 CocoaDialog[17281] InputManagersManager
> startup
> 2006-07-01 20:23:49.061 CocoaDialog[17282] InputManagersManager
> startup
> Type: Blog Post (HTML)
which is gonna break things, no?
-ryan
Hi,
I have the unfortunate job of writing a bunch of Windows Script
Components (psuedo COM objects written in scripting languages). In my
case, it is just some VBScript wrapped in some XML.
I hacked up a really lame VBScript bundle by basically ripping off
the ASP bundle. What I would like to do is have the VBScript portion
of the XML file be treated by TextMate as VBScript.
The script portion of the document looks like this...
<script language="VBScript">
<![CDATA[
' VBScript here.
]]>
</script>
Can I get some help from the bundle gurus please :)
Thanks,
LD.
I often need to import data into R using the read.table command, but
my data files have header and footer information which shouldn't be
parsed by read.table. Here is a script which takes selected lines
from the active document and imports them to R using read.table:
-----
header_row_grep_text="run"
ignore_lines_at_end=2
# Find the header row, which always (and uniquely) contains the text
specified above.
X=`grep -n $header_row_grep_text $TM_FILEPATH | cut -f1 -d:`
# Determine the number of lines in file.
Y=`wc -l $TM_FILEPATH | cut -c 1-8`
# Tell R to read the data in this file, starting with line X which
has the variable names.
osascript -e 'tell application "R" to activate' -e "tell application
\"R\" to cmd \"data <- read.table(\\\"$TM_FILEPATH\\\", header=TRUE,
sep=\\\",\\\", skip=`expr $X - 1`, nrows=`expr $Y - $X -
$ignore_lines_at_end`)\""
-----
I have a more detailed explanation here: http://love.agent.ie/
articles/2006/07/02/sending-simulation-output-to-r
-Ana
Here is a slight modification of one of the R Bundle commands which
lets you send a file to be processed the R GUI. I started with the
built-in “Send selection to R” which looks like this:
osascript -e 'tell application "R" to activate' -e "tell application
\"R\" to cmd \"${TM_SELECTED_TEXT//\"/\\\"}\""
I replaced $TM_SELECTED_TEXT with source("$TM_FILEPATH"):
osascript -e 'tell application "R" to activate' -e "tell application
\"R\" to cmd \"source(\\\"$TM_FILEPATH\\\")\""
I have a more detailed explanation here: http://love.agent.ie/
articles/2006/07/02/passing-scripts-to-the-r-gui
-Ana
Hi all,
How are you guys managing svn properties while using TextMate?
Currently I drop back to the command line which is a tad
inconvenient. I haven't seen any way to modify properties from within
textmate, is there a way?
If not, what have you found to be an efficient way of modifying SVN
properties on version controlled files?
Thanks,
Luke.
The help file says ...
it is imperative that you set up the variable TM_GTD_CONTEXT to hold a
space-separated list of all the context you want to be using.
I'm sure how one does this must be obvious, since so many people are using
the (nice looking) bundle. Unfortunately, I'm one of those for whom the
obvious is sometimes obscure. How and where does one set up the variable?
Please?
Lewy