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 <teromario@yahoo.com>2013-05-14 22:43:43 +0400
committerMarius Ungureanu <teromario@yahoo.com>2013-05-14 22:43:43 +0400
commit267efbe568d3ae443fe973a72c3bbbc56f2d9b78 (patch)
treed2325ba14de01d80bfc2bbae742a858f166e46ea /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
parent8105f814d863b0efa927b4e86490eff98fc9ce86 (diff)
Bug 8541 - Reopen Closed Tab
This adds a feature Open Last Closed Tab similar to Google Chrome. This acts like a backwards linked-list which opens documents in the order of closing. ClosedDocumentNavigationPoint is a type specifically for this action. This required an enhancement to the NavigationHistoryService to support this new kind of items. *Should I have split this to a new service? The need of the ReorderTab to fix visual appearance of tabs when reopening.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
index 360b044631..e3f28cea05 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
@@ -403,4 +403,5 @@ namespace MonoDevelop.Ide.Commands
// MonoDevelop.Ide.Commands.FileTabCommands.CloseAllButThis Implemented in FileTabCommands.cs
// MonoDevelop.Ide.Commands.CopyPathNameHandler Implemented in FileTabCommands.cs
// MonoDevelop.Ide.Commands.FileTabCommands.ToggleMaximize Implemented in FileTabCommands.cs
+ // MonoDevelop.Ide.Commands.FileTabCommands.ReopenClosedTab Implemented in FileTabCommands.cs
}