Breaks Edit.GoTo command
See original GitHub issue- Open a text file in VS 2015 (without Git Diff Margin installed)
- Type
Edit.GoTo 5
into Command Window and pressEnter
- Cursor correctly jumps to line 5
- Install Git Diff Margin
- Type
Edit.GoTo 5
into Command Window and pressEnter
- Error appears in the Command Window:
Command "Edit.GoTo" does not accept arguments or switches.
Issue Analytics
- State:
- Created 7 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
Jump statements - break, continue, return, and goto
The break statement terminates the closest enclosing iteration statement (that is, for , foreach , while , or do loop) or switch statement....
Read more >Why are goto, break, continue and multiple return ...
We have been forbidden from using goto , break and continue , and must only use a single return statement from a function....
Read more >goto Statement in C
The use of goto makes tracing the flow of the program very difficult. The use of goto makes the task of analyzing and...
Read more >C++ goto Statement
The goto statement can be replaced in most of C++ program with the use of break and continue statements.
Read more >Labels in Go
Label is used in break and continue statement where it's optional but it's required in goto statement. Scope of the label is the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@laurentkempe I was able to fix this in the end and submitted a pull request.
Yes, it is quite weird. Nevertheless, I have it working on Visual Studio 2015 so no worries!