Hi everyone,
This seems to be an ever-returning-problem and it finally happens to me…
I installed Leopard on my MBP and the Ctrl-Esc shortcut does not work. Is
there any voodoo which would solve this issue ?
Thanks in advance.
--
View this message in context: http://www.nabble.com/Ctrl-Esc-on-Leopard-tf4784439.html#a13687499
Sent from the textmate users mailing list archive at Nabble.com.
I've decided to stop fighting against the current, and move form cvs
to svn ;-) , so I'm trying to set up an svn server.
Leopard ships with svnserve and apache2 - which option should I take?
Has anyone managed to get a svn server running on Leopard yet?
R
When I invoke "Run Script (PyMate)" from the Python bundle, I get:
/Applications/TextMate/TextMate.app/Contents/SharedSupport/Support/lib/scriptmate.rb:128:in
`initialize': Permission denied -
/Users/darylspitzer/Programming/Altera/Perforce/miscellany/infrastructure/integration/integration_status.py
(Errno::EACCES) from
/Applications/TextMate/TextMate.app/Contents/SharedSupport/Support/lib/scriptmate.rb:128:in
`open' from /Applications/TextMate/TextMate.app/Contents/SharedSupport/Support/lib/scriptmate.rb:128:in
`initialize' from
/Applications/TextMate/TextMate.app/Contents/SharedSupport/Bundles/Python.tmbundle/Support/PyMate/pymate.rb:24:in
`new' from /Applications/TextMate/TextMate.app/Contents/SharedSupport/Bundles/Python.tmbundle/Support/PyMate/pymate.rb:24
This started happening yesterday, and then went away. Now it's back.
How do I make it go away for good?
I'm running 1.5.6 (1405).
hi there :)
if i do "mate project-dir" i can use mercurial pretty fine. but if i
do "mate framework project-dir" it says this:
abort: There is no Mercurial repository here (.hg not found)!
i've tried it having a file open and marking a directory or a file in
the tree but it doesn't matter.
does anybody know why this happens or how i can fix this?
regards,
oktay.
On 11/11/2007, at 11:00 PM, textmate-request(a)lists.macromates.com wrote:
>
> Granted svn can be a pain to set up, but is Mercurial generally
> accepted by the Open Source community? Right now, if someone wants to
> pass around a new Textmate bundle or Rails plugin, they point to an
> svn repo and the deal is done. I haven't looked into Mercurial too
> carefully, but if it's better and can be accessed by svn users
> transparently (riiiigggt :) then it could be a godsend.
>
> Any thoughts on that?
Heh,
There are a bunch of different version control systems out there
vying to the be the distributed version control system of choice. I
like DARCS and Monotone myself - there is more theory behind their
handling of the distribution/merging. Having said that, Mercurial has
a lot of momentum behind it at the moment - it is known as being fast
and easy to use.
The point above is correct though, if you want to make something
available to the unwashed masses, svn is the way to go. You have to
ask yourself if it is worth your time to set up svn, or if you're
happier using one of the other systems and telling the unwashed masses
they'll have to use it if they want your latest source...
Be well,
Will :-}
Hello,
I am working a lot with source code written using Emacs on Linux. The
prevailing convention is that tabs are presented as 8 spaces, but
indents are only 4 spaces. Indenting will insert spaces, and Emacs
seems to swap groups of 8 spaces for a tab.
If I use a tab size of 8 in Textmate, the source files display
correctly. Sadly, there is no way to tell Textmate to use an indent
size of 4.
It would be very useful is it was possible to tell TextMate to:
1. Draw tabs as 8 spaces
2. Use spaces when indenting
3. Intend with 4 spaces, not the 8 spaces from a tab
Is there any way to do this with TextMate at the moment?
I'm using TextMate 1.5.3 (1215)
--
Kind regards,
James Milne
I have the default main template "template_in.txt" and additionally
several License.txt templates. Based on a environment variable, I want
to concatenate the license with the main template, but I don't know
how
this is the default command to insert a template:
if [[ ! -f "$TM_NEW_FILE" ]]; then
TM_YEAR=`date +%Y` \
TM_DATE=`date +%Y-%m-%d` \
TM_USERNAME=`niutil -readprop / /users/\$USER realname` \
perl -pe 's/\$\{([^}]*)\}/$ENV{$1}/g' \
< template_in.txt > "$TM_NEW_FILE"
fi
I tried to to turn it into somethng like this:
if [[ ! -f "$TM_NEW_FILE" ]]; then
TM_YEAR=`date +%Y` \
TM_DATE=`date +%Y-%m-%d` \
TM_USERNAME=`niutil -readprop / /users/\$USER realname` \
perl -pe 's/\$\{([^}]*)\}/$ENV{$1}/g' \
< template_in.txt << License.txt > "$TM_NEW_FILE"
fi
unfortunately this doesn't work.
Anybody an idea how I can make this work ?
regards
--
Roberto Saccon
http://rsaccon.com
Hello,
Today I always receive the error message
Running bibtex on mt.tex
Traceback (most recent call last): File "/Applications/TextMate.app/
Contents/SharedSupport/Bundles/Latex.tmbundle/Support/bin/texMate.py",
line 443, in texStatus, isFatal, numErrs, numWarns =
run_bibtex(texfile=fileName) File "/Applications/TextMate.app/Contents/
SharedSupport/Bundles/Latex.tmbundle/Support/bin/texMate.py", line 67,
in run_bibtex return stat,fatal,err,warn UnboundLocalError: local
variable 'stat' referenced before assignment
I did some "experiments" with the Bibtex setup and Command Editing in
the bundle editor, but I never edited any of those python files
manually.
The bibtex command is:
# just to remind you of some useful environment variables
# see Help / Shell Variables for the full list
. "${TM_SUPPORT_PATH}/lib/html.sh"
. "${TM_SUPPORT_PATH}/lib/webpreview.sh"
# Prepare output window.
html_header 'Run BibTeX'
texMate.py bibtex 1
The typeset & view command looks like this:
# Source some support functions we need.
. "${TM_SUPPORT_PATH}/lib/html.sh"
. "${TM_SUPPORT_PATH}/lib/webpreview.sh"
# Prepare output window.
html_header 'Typeset & View' "$FILE"
# Compile.
texMate.py latex 1
RC=$?
html_footer
# Cleanup
# find . -name "*.log" -exec rm -rf {} \;
# find . -name "*.aux" -exec rm -rf {} \;
# find . -name "*.aux.bak" -exec rm -rf {} \;
# find . -name "*.toc" -exec rm -rf {} \;
exit $RC
I am using Version 1.5.7 (1436).
What should I do to fix this?
Thanks!
Ok, I'm trying to convert my existing CVS repository to a Mercurial
repository.
I've installed cvsps, and Mercurial version is the latest (form
the .dmg) and includes the convert extension.
I've tried
hg convert /Volumes/Macintosh\ HD/usr/local/cvsrep/pcs /
Repositories/pcs
with and without a sudo (wave that dead chicken!)... result - nada.
Has anyone managed to do this in the past? Is there an easier way? Any
ideas?
Aaaarrrgggh.
R
I'm sure why these should override user-specified engines but the
following packages are checked for when using texMate.py,
latexIndicators = ['pstricks' , 'xyling' , 'pst-asr' , 'OTtablx' ,
'epsfig' ]
xelatexIndicators = ['xunicode', 'fontspec']
Unfortunately, the regular expression that detects packages is
'([^%]|^)\\usepackage(\[[\w, \-]+\])?\{([\w\-]+)\}'
which detects commented packages including anything (eg, spaces) after
the '%'. Seems like the following may make more sense
'(^[^%]*)\\usepackage(\[[\w, \-]+\])?\{([\w\-]+)\}'
---------------------
Fernando Diaz
Department of Computer Science
University of Massachusetts
Amherst, MA 01003
---------------------
tel: (413) 545-3059
fax: (413) 545-1789
---------------------
email: fdiaz(a)cs.umass.edu
home: http://ciir.cs.umass.edu/~fdiaz