Hi List
I need to remove textmate but I don't see any information on how to remove it so I can re-install it again with a version we got internally, could anyone please send me some instructions?
Kind regards Per Qvindesland
On 25 May 2011, at 12:23, Per Qvindesland wrote:
I need to remove textmate but I don't see any information on how to remove it so I can re-install it again with a version we got internally, could anyone please send me some instructions?
The application itself can be dragged to trash (it’s likely in your Applications folder).
TextMate keeps files in two other locations:
1. Your personal settings: ~/Library/Preferences/com.macromates.textmate.plist 2. Installed and customized bundles, themes, and plug-ins: ~/Library/Application Support/TextMate
If you remove the latter two items, you lose any personalization you may have done.
Hi
Thanks that worked.
Regards Per Qvindesland
On Wed, May 25, 2011 at 4:08 PM, Allan Odgaard mailinglist@textmate.orgwrote:
On 25 May 2011, at 12:23, Per Qvindesland wrote:
I need to remove textmate but I don't see any information on how to
remove
it so I can re-install it again with a version we got internally, could anyone please send me some instructions?
The application itself can be dragged to trash (it’s likely in your Applications folder).
TextMate keeps files in two other locations:
- Your personal settings:
~/Library/Preferences/com.macromates.textmate.plist 2. Installed and customized bundles, themes, and plug-ins: ~/Library/Application Support/TextMate
If you remove the latter two items, you lose any personalization you may have done.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
To develop R code I am using the R bundle. Since some time now we have a 64bit version of R, and the name to the app is R64. So I replaced tell application "R" by tell application "R64" in appropriate places.
There is a serious problem remaining When i insert a paren open, textmate stalls for quite some time.
The reason seems to be in the macro Show Function Usage + Insert "(" which has the
executeCommandWithOptions:
with the code
{ beforeRunningCommand = nop; command = ""$TM_BUNDLE_SUPPORT"/bin/auto_show_func_usage.sh"; fallbackInput = line; input = document; name = "Auto Show Func Usage"; output = showAsTooltip; uuid = "9AACF8E0-2705-4994-B67F-77D030F9ABA7"; }
My guess is that the script auto_show_func_usage.sh still calls the 32bit version of R (named "R") instead of R64. U cannot find the sh script on my machine. Where do I need to look for it.
As you see, I am not an experiences Textmate programmer, just a normally very happy user.
On 24 Nov 2011, at 00:47, Neuwirth Erich wrote:
[…] My guess is that the script auto_show_func_usage.sh still calls the 32bit version of R (named "R") instead of R64. U cannot find the sh script on my machine. Where do I need to look for it.
Not sure how you installed the bundle, but the script is included inside the bundle (in the Support folder).
I’m inclined to suggest the R bundle introduce a TM_R variable, but given that what you changed was actually the application name used to signal the application via AppleScript, it seems R should really be changed to have a canonical name rather than name its scripting port after its executable.