On 17 Apr 2008, at 16:40, CiarĂ¡n Walsh wrote:
On 17 Apr 2008, at 09:31, Hans-Joerg Bibiko wrote:
But if I write an other tmCommand in BASH, it works but I do not see what I'm typing and the output behaviour is also different (it gives me back the plist as well).
Since the --wait flag causes dialog not to return until a choice is made, you must run the command in the background so that control is returned to TextMate right away (the Ruby complete() API does this for you, and supports the block). i.e., try adding '&>/dev/null &' to the end of the command
Yes. This works. But then I can write simply:
echo '...' | "$DIALOG" popup --initial-filter "$TM_CURRENT_WORD"
without --wait to have the same behaviour. It's seems to me that -- wait is useless in BASH(?)
Because, if I write:
echo '...' | "$DIALOG" popup --wait --initial-filter "$TM_CURRENT_WORD" &
it does not work. My intention also was to get back the selected item as plist and do something with it. But I must write &>/dev/null.
Thanks,
--Hans