I'm not sure if the description describes this problem properly, I'm not quite sure what's going on. This is not a priority issue for me, just thought I'd bring it up...
I created a new text document. I typed 'man sed' I hit control r.
And the output was something like this:
man sedSED(1) BSD General Commands Manual SED(1)
NNAAMMEE sseedd -- stream editor
SSYYNNOOPPSSIISS sseedd [--EEaann] _c_o_m_m_a_n_d [_f_i_l_e _._._.] sseedd [--EEaann] [--ee _c_o_m_m_a_n_d] [--ff _c_o_m_m_a_n_d___f_i_l_e] [--ii _e_x_t_e_n_s_i_o_n] [_f_i_l_e _._._.]
DDEESSCCRRIIPPTTIIOONN The sseedd utility reads the specified files, or the standard input if no files are specified, modifying the input as specified by a list of com- mands. The input is then written to the standard output.
[...]
I'm not sure if the characters came across in this email the same as they looked in TM. I'm guessing the control sequences that make bold text in man pages are coming across as gibberish.
If I do `man sed | mate` in the terminal the outcome is the same.
Any ideas how to deal with this?
Q
I managed to install all bundles via subversion, but I am having trouble updating them.
1. opened terminal 2. cd /Library/Application\ Support/TextMate/Bundles 3. svn up *.tmbundle
This results in this error: svn: REPORT request failed on '/svn/Bundles/!svn/vcc/default' svn: REPORT of '/svn/Bundles/!svn/vcc/default': 400 Bad Request (http://macromates.com)
Could someone help point out what I might be missing.
Thanks, Steve
Trying to make a commit, same 400 Bad Request error here...
On 10 juin 06, at 01:29, nachodog@mac.com wrote:
I managed to install all bundles via subversion, but I am having trouble updating them.
- opened terminal
- cd /Library/Application\ Support/TextMate/Bundles
- svn up *.tmbundle
This results in this error: svn: REPORT request failed on '/svn/Bundles/!svn/vcc/default' svn: REPORT of '/svn/Bundles/!svn/vcc/default': 400 Bad Request (http://macromates.com)
Could someone help point out what I might be missing.
Thanks, Steve
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
On 10/6/2006, at 1:29, nachodog@mac.com wrote:
I managed to install all bundles via subversion, but I am having trouble updating them [...]
Try updating again, be sure you have no proxy, try https instead of http… that’s the normal drill.
Quinn Comendant wrote:
I created a new text document. I typed 'man sed' I hit control r.
You can pipe the output through "col -b" to kill those doubled up characters. For example, make a new command called "manpage" in a bundle (your own perhaps) and use
Save: Nothing
Command:
word=${TM_SELECTED_TEXT:-$TM_CURRENT_WORD} man ${word} | col -b
Input: Nothing Output: Replace Selected Text
Choose a key equivalent (eg, control-command-option-M) and a scope (blank if you want this available anywhere) and you're away.
There's also a command in the "Unix Shell" bundle that looks as if it should be offering the same functionality, but with prettier output. You will, however, have to track down the correct location of "rman", which it calls in a couple of places, before it'll work correctly.
Cheers, Paul