Hello,
I'm trying to use the database browser with TextMate 1.5.6 (1405)
with Postgres 8.2.1. I've configured the SQL Bundle and when I try to
activate the browser, I see this error message:
/Applications/TextMate.app/Contents/SharedSupport/Bundles/
SQL.tmbundle/Support/bin/db_browser.rb:178:in `abort': cannot convert
Array into String (TypeError) from /Applications/TextMate.app/
Contents/SharedSupport/Bundles/SQL.tmbundle/Support/bin/db_browser.rb:
178 from /Applications/TextMate.app/Contents/SharedSupport/Bundles/
SQL.tmbundle/Support/bin/db_browser.rb:167:in `html' from /
Applications/TextMate.app/Contents/SharedSupport/Bundles/SQL.tmbundle/
Support/bin/db_browser.rb:167
I've already made the password prompt regex change suggested in
another posting, but that did not help.
Thanks for looking into this.
-B
Dear friends!
I am using Textmate for my LaTeX projects (writing arcticles at the
university).
I want the following macro: I want to mark a text that I have written
and then I want to push a special keyboard shortcut to activate it.
Example: "This is a text and it is just an example."
I want to mark the word "text", push a keyboard shortcut and then it
should create automatically:
"This is a \frqq text\flqq\ and it is just an example."
Can this be realized with TextMate?
Kind regards!
Chris (Austria)
For what it's worth, here's a refined version of this morning's
quickie HTML anchor commands. I'm definitely open to input.
They're tied to CTRL-SHIFT-R. That's probably something else's
shortcut, too, but I've lost track. There are two commands so the
shortcut gives you a menu with 2 options. Creating an anchor just
gives you a snippet with a suggested name based on the selected
text. Creating an anchor link gives you a list of all of the current
named anchors in the page and lets you select what to link to.
Thanks,
Brett
I had to whip this up this morning for a site that had a ton of named
anchor tags. There may have been something previously but I missed
it. If you highlight the text to link and hit CTRL-SHIFT-A, it will
give you a dialog with a suggested name for the anchor. Confirming
the dialog after any necessary modifications will create the href
link to the anchor and copy the name of the anchor to the clipboard.
Then you place the cursor or highlight the text to become the anchor
and hit CTRL-SHIFT-A again. It will create the anchor from the
clipboard. This makes for rapid index development.
The only drawback is that my current system of using the same
keyboard shortcut twice means if you hit undo after pasting the
anchor you lose the clipboard and have to start that anchor over from
the beginning. It may be wise to separate the two functions, but I
didn't want to take up more shortcuts than necessary ;).
Brett
Hi,
I'm using Version 1.5.6 (1405) with Postgres 8.2.4. I've configured my setup
in the SQL Bundle,
but when opening the Databrowser nothing shows. I get the display of
"Databases" but there are no databases shown. When I add a wrong one, the
databrowser will complain that the db is unknown.
I can post mor information when necessary.
CU
Christian
--
View this message in context: http://www.nabble.com/SQL-Bundle%3A-Postgres-with-Databrowser-shows-nothing…
Sent from the textmate users mailing list archive at Nabble.com.
El 10/07/2007, a las 14:00, textmate-request(a)lists.macromates.com
escribió:
> tell application "TextMate"
> set w to window index 2
> set visible of w to false
> set visible of w to true
> end tell
it works like a charm. Thanks a lot. It will be for me a very
frequent shortcut.
- Juan FC.
Since upgrading to the latest version yesterday, the Convert Tabs To Spaces
menu option doesn't always work. I click on it and my text doesn't change.
But what I noticed later was a copy of my file's text had been appended to
the end of the file. More failures made more copies of the content.
Strange, I'm trying to reproduce the problem now and it's not occurring. It
works correctly every time.
This is with version 1.5.6 (1405).
THanks,
Ernest
--
View this message in context: http://www.nabble.com/Convert-Tabs-to-Spaces-is-unreliable-tf4059276.html#a…
Sent from the textmate users mailing list archive at Nabble.com.
I found a question on this posed in the dev mailing list, but am posting in
the user mailing list, because it is now a user issue :-)
Any luck with this... I see the release notes mention using the keychain to
store passwords, but I'm not sure how to go about doing this...
Brad Miller wrote:
>
> I've been trying to get the new browser to work. But I get the following
> error:
>
> ERROR 1045 (28000): Access denied for user 'bmiller'@'localhost' (using
> password: NO)
>
> It looks like I should be prompted for a password? There is no place to
> enter one in the configuration dialog. I've searched my keychain and
> cannot find one. Is there some variable I should be setting to tell the
> SQL
> bundle that I want to use a password?
>
> Brad
>
> --
> Brad Miller
> Assistant Professor, Computer Science
> Luther College
>
> On 7/7/07, Ciarán Walsh <ciawal(a)gmail.com> wrote:
>>
>> Switching in new SQL bundle from WIP branch
>>
>> Changed:
>> D branches/WIP/Bundles/SQL.tmbundle/
>> A trunk/Bundles/SQL.tmbundle/
--
View this message in context: http://www.nabble.com/sql-bundle-and-the-keychain--tf4043562.html#a11486125
Sent from the textmate users mailing list archive at Nabble.com.
Hey Kim,
Actually I was able to fix the problem by going to:
Bundles -> Bundle Editor -> Reload Bundles
This fixed multiple problems for me:
1) TODO Bundle
2) Markdown Preview
3) My Personal Bundle Snippets
----
Brian H
binarynomad(a)gmail.com
http://www.binarynomad.com
Based on a recent post, I have found easy to switch between the two
front-most windows,
osascript -e '
tell application "TextMate"
set index of window 2 to 1
end tell
' &>/dev/null &
(binded to numeric(0), making it really fast two use it!!, I use the
little finger)
but it doesn't work as desired since, although it exchanges the
windows order, it doesn't exchange the active one, leaving the window
behind the new front-most one active :(
Has anyone know some solution?
Thanks.
-- Juan FC