Topic: Visual Studio (1 of 6), Read 15 times
Conf: Compiler support
From: Ian Binnie
Date: Friday, June 12, 2009 05:20 AM

I have been trying to open vedit from the Visual Studio 2005 Tools Menu.

This opens the file, but I have been unable to jump to the current line.

I have tried the following, and many combinations thereof.
$(ItemPath) -l$(CurLine)

The trouble is Visual Studio 2005 insists on putting quotes around the -lnnn, which results in vedit trying to open it as a new file.

As I can't seem to stop Visual Studio 2005 putting on quotes, is there anyway I can convince vedit to ignore them?

 


Topic: Re: Visual Studio (2 of 6), Read 11 times
Conf: Compiler support
From: Ted Green
Date: Friday, June 12, 2009 10:02 AM

At 05:21 AM 6/12/2009, vtech-compile Listmanager wrote:
>From: Ian Binnie
>
>I have been trying to open vedit from the Visual Studio 2005 Tools Menu.
>
>This opens the file, but I have been unable to jump to the current line.
>
>I have tried the following, and many combinations thereof.
>$(ItemPath) -l$(CurLine)
>
>The trouble is Visual Studio 2005 insists on putting quotes around the -lnnn, which results in vedit trying to open it as a new file.
>
>As I can't seem to stop Visual Studio 2005 putting on quotes, is there anyway I can convince vedit to ignore them?

As I am working almost daily on VEDIT again, let me look into that in the next few days.

Ted.

 


Topic: Re: Visual Studio (3 of 6), Read 11 times
Conf: Compiler support
From: Ted Green
Date: Friday, June 19, 2009 04:14 PM

At 05:21 AM 6/12/2009, you wrote:
>From: Ian Binnie
>
>I have been trying to open vedit from the Visual Studio 2005 Tools Menu.
>
>This opens the file, but I have been unable to jump to the current line.
>
>I have tried the following, and many combinations thereof.
>$(ItemPath) -l$(CurLine)
>
>The trouble is Visual Studio 2005 insists on putting quotes around the -lnnn, which results in vedit trying to open it as a new file.
>
>As I can't seem to stop Visual Studio 2005 putting on quotes, is there anyway I can convince vedit to ignore them?

Give me the exact syntax you want VEDIT to accept and I will work on it immediately for you.

Ted.

 


Topic: Re: Visual Studio (4 of 6), Read 12 times
Conf: Compiler support
From: Ian Binnie
Date: Friday, June 19, 2009 08:39 PM

On 6/19/2009 4:14:23 PM, Ted Green wrote:
>At 05:21 AM 6/12/2009, you
>wrote:
>>From: Ian Binnie
>>
>>I have been trying to open vedit from the Visual Studio 2005 Tools Menu.
>>
>>This opens the file, but I have been unable to jump to the current line.
>>
>>I have tried the following, and many combinations thereof.
>>$(ItemPath) -l$(CurLine)
>>
>>The trouble is Visual Studio 2005 insists on putting quotes around the -lnnn, which results in vedit trying to open it as a new file.
>>
>>As I can't seem to stop Visual Studio 2005 putting on quotes, is there anyway I can convince vedit to ignore them?
>
>Give me the exact syntax you
>want VEDIT to accept and I
>will work on it immediately
>for you.
>

Ted, thanks.

I use the Arguments:-
$(ItemPath) -l$(CurLine)

Visual Studio 2005 produces the following command line:-
"D:\vedit\vpw.exe" "D:\Visual Studio 2005\Projects\ZbarImageViewer\ZTree.vb" "-l92"

If I use the Arguments:-
$(ItemPath) -l $(CurLine)

Visual Studio 2005 produces the following command line:-
"D:\vedit\vpw.exe" "D:\Visual Studio 2005\Projects\ZbarImageViewer\ZTree.vb" -l "92"

The second would probably be the best, but I would be happy with any workaround.

I had not explored other Arguments, such as column, but I use the following in Visual C++ 6.0

-cGC($(CurCol)) "$(FilePath)" -l$(CurLine)

 


Topic: Re: Visual Studio (5 of 6), Read 16 times
Conf: Compiler support
From: Ted Green
Date: Monday, June 29, 2009 05:33 PM

At 08:40 PM 6/19/2009, you wrote:
>From: Ian Binnie
>If I use the Arguments:-
>$(ItemPath) -l $(CurLine)
>
>Visual Studio 2005 produces the following command line:-
>"D:\vedit\vpw.exe" "D:\Visual Studio 2005\Projects\ZbarImageViewer\ZTree.vb" -l "92"

I implemented this today - the number following the -l can optionally be in double-quotes.

You can download this test version from:

http://www.vedit.com/download/vpw.exe

Note: While this version ID's itself as 6.15.4, it has many other (not yet documented) changes over 6.15.3 and should be considered a test version only.

Ted.

 


Topic: Re: Visual Studio (6 of 6), Read 19 times
Conf: Compiler support
From: Ian Binnie
Date: Monday, June 29, 2009 07:16 PM

On 6/29/2009 5:33:21 PM, Ted Green wrote:
>At 08:40 PM 6/19/2009, you
>wrote:
>>From: Ian Binnie
>>If I use the Arguments:-
>>$(ItemPath) -l $(CurLine)
>>
>>Visual Studio 2005 produces the following command line:-
>>"D:\vedit\vpw.exe" "D:\Visual Studio 2005\Projects\ZbarImageViewer\ZTree.vb" -l "92"
>
>I implemented this today - the
>number following the -l can
>optionally be in
>double-quotes.

Thanks Ted.

This works great.