Hi,
I just thought about a tiny improvement regarding to display plots in
Preview.
If I want to plot something, Preview opens it. Fine. After doing that
I want to change the plot for instance. The new plot will be
calculated but Preview still displays the old one. I have to 'Revert'
it or close it before running the R script.
To make a quasi-update automatically here's a suggestion:
________________
defaults write /Applications/Preview.app/Contents/Info
NSAppleScriptEnabled -bool YES
P=$(osascript -e 'tell application "System Events" to (name of
processes) contains "Preview"')
if [ "$P" == "true" ]; then
osascript <<-AS2 &>/dev/null
tell application "Preview"
close every window
end tell
AS2
fi
"$TM_BUNDLE_SUPPORT/tmR.rb"
________________
Explanation:
'default write' has to execute only once to enable AppleScript in
Preview. So you can comment it out if set.
The next line checks whether Preview runs or not.
If Preview is running I close every window in Preview. This is a kind
of a small hack because AppleScript returns a warning 'missing
value', so I send it to the nirvana.
Both AppleScripts could be replaced by changing tmR.rb directly.
I.e., if tmp_dir is not empty and Preview is running (system(ps -aux
| grep Preview)) then call an AppleScript to close every window.
On the other hand it would be nice to have an easy way to set pdf()'s
'onefile' argument in order to be able to print all plots in one pdf.
Maybe solvable by using a TM variable?
Any comments?
All the best,
Hans
Sorry for the n00b questions, this is all new to me :)
I'm working on the blogger bundle, and saw that when I make end user
changes, those are mirrored into App Support, which rocks!
However, I'm tinkering with the ruby stuff (like I want it to upload
into /images/) just getting my feet wet and really don't want to be
mucking around inside of the app's bundle. Is there any way to
locally override the bundle file in App Support?
Thanks!
Steve
I'm trying to put together a grammar and having a hard time getting
the pattern matching right.
The line I'm interested in will be in the following format--
KW: [any text except a percentage sign can go in here] % (fold)
What I want to do is apply the scope comment.line.percentage from the
% sign to the end of the line, and variable.notes to everything in
between KW: and the percent sign. I also want to be able to use
Markdown-style italics within the variable.notes section.
Here is the patterns block as I have constructed it thus far:
patterns = (
{ name = 'comment.line.percentage';
match = '%.*$';
},
{ begin = '^KW:';
end = '% \(fold\)|$';
patterns = (
{ name = 'markup.italic.notes.variable';
match = '\*[^\*]+?\*';
},
);
contentName = 'variable.notes';
},
{ name = 'markup.italic.notes';
match = '\*[^\*]+?\*';
},
);
This does everything correctly except the % (fold) only acquires the
scope of the whole grammar and not the comment scope. Anything
following a percentage sign on a line that doesn't begin with KW: is
matched fine.
Any help on how to construct the grammar to match the end of this
line would be appreciated!
Colin Hahn
»Geben Sie mir Kaffee, dann mache ich Phänomenologie daraus.«
"Give me my coffee so that I can make phenomenology out of it." --
Edmund Husserl
ok it appears this was only tested on WordPress according to the
comments. :)
I duplicated "Category" into "Category MT" and changed the xmlrpc
call to:
blog_id = cred.blog_id
res = [{'categoryName' => cred.username},{'categoryName'=>'two'}]
res = TextMate.call_with_progress(:title => "Fetch
Categories", :message => "Contacting Server “#{cred.host}”…") do
cred.client.call("mt.getCategoryList", blog_id, cred.username,
password)
end
Now I get a list of categories! However they are not posted, because
MT does all of its category stuff with IDs. So more work is involved.
I guess nobody is using the Blogging bundle with MT?
Steve
Hi everyone,
I'm trying to run a ruby script via Cmd-R, and I get this error:
RubyMate r6189 running Ruby r1.8.4 (/usr/local/bin/ruby)
>>> symlink_dotfiles.rb
/Applications/TextMate.app/Contents/SharedSupport/Bundles/Ruby.tmbundle/Support/RubyMate/run_script.rb:39:in
`filter_stdout': undefined method `test_script?' for nil:NilClass
(NoMethodError) from /Users/sean/Library/Application
Support/TextMate/Support/lib/scriptmate.rb:59:in `emit_html' from
/Users/sean/Library/Application
Support/TextMate/Support/lib/scriptmate.rb:53:in `emit_html' from
/Applications/TextMate.app/Contents/SharedSupport/Bundles/Ruby.tmbundle/Support/RubyMate/run_script.rb:73
The script runs fine in the shell, using the same ruby executable.
Any idea where something went wrong?
Thanks!
Sean
Am checking out textmate (am a 10 year bbedit user). So far I love
what I see, tho I have much to learn.
I am trying the blogging bundle with movable type 3.33 (I upgraded
from 3.2 just for this issue, but that didn't help. At least I got a
better blog out of it :))
I can retrieve posts fine.
When I make a new post and try cat tab, I get:
/usr/lib/ruby/1.8/xmlrpc/parser.rb:154:in `fault': wrong fault-
structure: {"faultCode"=>"Client", "faultString"=>"Failed to locate
method (getCategories) in class (metaWeblog) at /usr/home/geeksrus/
public_html/cgi-bin/mt/extlib/SOAP/Lite.pm line 2180.\n"} (RuntimeError)
from /usr/lib/ruby/1.8/xmlrpc/parser.rb:562:in `tag_end'
from /usr/lib/ruby/1.8/rexml/parsers/streamparser.rb:26:in `parse'
from /usr/lib/ruby/1.8/rexml/document.rb:171:in `parse_stream'
from /usr/lib/ruby/1.8/xmlrpc/parser.rb:722:in `parse'
from /usr/lib/ruby/1.8/xmlrpc/parser.rb:462:in `parseMethodResponse'
from /usr/lib/ruby/1.8/xmlrpc/client.rb:410:in `call2'
from /usr/lib/ruby/1.8/xmlrpc/client.rb:399:in `call'
from /tmp/temp_textmate.GnKX4C:46
from /tmp/temp_textmate.GnKX4C:45:in `popen'
from /Applications/TextMate.app/Contents/SharedSupport/Support/lib/
progress.rb:11:in `call_with_progress'
from /tmp/temp_textmate.GnKX4C:45
MarsEdit works fine.
Thanks and I look forward to learning more about TextMate!
Steve
Hi,
this already cropped up in the list: sometimes
the Latex bundle does not catch errors which
are however catched by TeXshop (and by
collaborators :). But if you look into the
.log file you see that the error was correctly
identified by TeX, so the problem must be in
the bundle.
To reproduce, create a new .tex file containing
\documentclass{article}
\begin{document}
\begin{equation}
\frac a b }
\end{equation}
\end{document}
(notice the unmatched brace).
If you save the file as "a.tex" and
run CMD-R, the error is caught (catched?).
Now the fun: save the file as "a-b.tex"
(a hyphen must be in the name) and run
CMD-R again. The error is not caught
(but is reported in the a-b.log file).
So Haris: this has something to do with
how the bundle handles files. Or not?
Piero
PS happy new year everybody!
It stopped working for me. I reinstalled and it still does not work.
I want to keep all my files in Markdown and convert to html ad back
to markdown for saving.
If I Shift-Apple-} it deleted the highlighted html
If I Shift-Apple-} the spinning wheel turns for a moment and nothing
changes.
Can anyone help.
Hi,
Regarding to the R-bundle command 'Command Usage':
I find this idea very good, but it supposes that on every Mac
'texscan' is installed.
So here's my suggestion for it:
1)
I don't use Ruby, only Bash with a tiny Perl snippet. It is a bit
faster.
2)
I'm looking for HTML files, not for tex files.
3)
It could happen that the structure of a help file is inconsistent,
i.e. no 'Usage' header. If so, now it outputs the first 1100
character of the help as plain text. Maybe you find what do you are
looking for.
4)
I suppressed the error messages coming from the 'find' command
mentioning that there is no permission to do something.
Here the code:
________________
COM=`tail`
FILES=`find "${R_HOME:-/Library/Frameworks/R.framework/Resources}"/
library -name $COM.html -print 2>/dev/null`
if [ ${#FILES} -eq 0 ]; then
echo "Nothing found for '$COM'"
exit_show_tool_tip
fi
for F in $FILES
do
cat "$F" | perl -e '$a="";while(<>){$a.=$_};$a=~m/<h3>Usage<\/h3\>[.|
\n]+<pre>(.*?)<\/pre>/sim;if($1){print "Usage:\n".$1;}else{$a=~s/<.*?
>//gms;$a=~s/\n{3,}/\n\n/gms;print substr($a,0,1100)."\n[...]"}'
done
__________________
Any comments?
Best,
-Hans