Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-08-24 21:55:34 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-08-24 22:52:41 +0300
commit1f15d81d306831a3bbd059dae1871d40ea202701 (patch)
treea4a0fcaead0af14190bbe2b2291900b6fcd897bd /main/src/core/MonoDevelop.Ide
parentbac727b272d69d6ee69667bcf7512b8fff35a973 (diff)
[Ide] Add explanation in help on how to open file at line and col
Bug 9428 - open to line from terminal command line
Diffstat (limited to 'main/src/core/MonoDevelop.Ide')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/IdeStartup.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/IdeStartup.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/IdeStartup.cs
index 9aaca48201..e4bbdeb869 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/IdeStartup.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/IdeStartup.cs
@@ -731,6 +731,10 @@ namespace MonoDevelop.Ide
Console.WriteLine (BrandingService.ApplicationName + " " + BuildInfo.VersionLabel);
Console.WriteLine ("Options:");
optSet.WriteOptionDescriptions (Console.Out);
+ const string openFileText = " file.ext;line;column";
+ Console.Write (openFileText);
+ Console.Write (new string (' ', 29 - openFileText.Length));
+ Console.WriteLine ("Opens a file at specified integer line and column");
}
return opt;