Questions tagged [mru]

The most recently used list is a list of files recently used by programs.

The most recently used list is a list of files recently used by programs. The use of this list will make it easier to find recently used files back for viewing or editing.

38 questions
45
votes
10 answers

How do you clear your MRU list in Visual Studio?

I want to clear the list of projects on the start page...how do I do this? I know I can track it down in the registry, but is there an approved route to go?
Gordon Mackie JoanMiro
  • 3,432
  • 3
  • 31
  • 41
22
votes
3 answers

Working solution for FZF most recent files in Vim?

I have a problem with finding a proper solution for most recently used files with the FZF Vim plugin. This plugin should have features like: show files opened in current vim session(like buffers) filter files like NERD_tree, fugitive I tried two…
tomekfranek
  • 7,110
  • 7
  • 41
  • 74
17
votes
1 answer

How do you register a Most Recently Used list with Windows in preparation for Windows 7?

With the upcoming release of Windows 7, one of the newly touted features is the Jump Lists, with their automatic population of most recently used items. Supposedly, if you've been 'properly' recording these most recently used items with the Windows…
Robert P
  • 15,185
  • 8
  • 66
  • 110
14
votes
4 answers

How to implement a most-recently-used cache

What would be the best way to implement a most-recently-used cache of objects? Here are the requirements and restrictions... Objects are stored as key/value Object/Object pairs, so the interface would be a bit like Hashtable get/put A call to 'get'…
izb
  • 45,586
  • 39
  • 110
  • 165
10
votes
3 answers

Where is the basic Control-TAB (MRU) behavior in Xcode?

In most multi-document editors for windowing environments, Control-TAB will utilize an MRU list to bring the user back to the last visible file. What is the appropriate command to accomplish this in Xcode 3.x? I currently have Ctrl-TAB mapped to…
Will Bradley
  • 1,683
  • 13
  • 26
7
votes
3 answers

Vimperator pass-through/unset by default

By default is mapped to gt command, which selects next tab. I want to pass-through to Crtl+Tab plugin which does MRU for tabs. Any idea?
user169337
  • 93
  • 5
6
votes
1 answer

WPF MenuItem : Mix databound items and static content

I'd like to build an MRU menu that has the following structure: File +=>Recent Files +=> Doc1.txt +=> Doc2.txt -separator- +=> Clear entries This being MVVM, my mru list is databound to the View Model. Because I want to add the…
Florian Doyon
  • 3,842
  • 24
  • 34
4
votes
1 answer

Programmatically finding the VS2017 Most Recently Used (MRU) solutions and projects

I know that Visual Studio 2017 now supports no-registry, side-by-side installations of all SKUs (Enterprise, Professional and Community) explanations here. We need to access the list of VS2017 Most Recently Used (MRU) solutions and projects. For…
Patrick from NDepend team
  • 12,441
  • 4
  • 53
  • 72
3
votes
2 answers

How can I create a most recently used file list in Delphi 2009?

I have an TActionManager, and a TActionMainMenuBar, and I know how to add an TActionClientItem for each MRU file to the main menu bar. But do I have to create a separate action for each MRU file in the list? Or is there a way to create just one…
croceldon
  • 4,211
  • 9
  • 51
  • 86
3
votes
1 answer

Programmatically access most frequently used apps in Windows 8.1

The Windows 8.1 start menu provides a list of apps that can be sorted by most used (Windows Button > Down arrow > Apps: by most used). Is there a way to programmatically get a list of these apps in this order in C#? If not in this order, at least a…
giangurgolo
  • 359
  • 3
  • 12
3
votes
3 answers

Is this algorithm implementation LRU or MRU?

I am working on implementing a MRU(Most Recently Used) cache in my project using C#. I googled some conceptions and implementations about MRU, and its contrary, LRU(Least Recently Used), and found this article…
KyL
  • 887
  • 9
  • 22
3
votes
1 answer

Sorted Keys data structure for LRU and MRU cache eviction policies

I am working on a simple data structure that will implement a cache eviction policy. The two possible scenarios I want to implement are LRU and MRU I am looking for a map-like data structure where keys are possibly time (or maybe just auto…
Saher Ahwal
  • 8,230
  • 28
  • 75
  • 136
2
votes
2 answers

APEX - Can a Tabular Form with its MRU functionality have filtering functionality like an Interactive Report?

What I really need is a Tabular form that allows me to update multiple rows at a time while being filterable like an Interactive report. Any chance this is even remotely possible? I would also like to hijack the row checkboxes on a tabular form that…
Spags
  • 531
  • 5
  • 13
  • 26
2
votes
3 answers

Windows XP, HKCU\...\LastVisitedMRU maximum number of items allowed?

I have a scenario where I need to put together a script to add an entry to the following registry key for the current user: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\LastVisitedMRU\ I am trying to find out the…
Wayne Koorts
  • 10,142
  • 10
  • 45
  • 72
2
votes
0 answers

MRU Recent Document History for WPF RibbonApplicationMenu?

How to add a "Recent Document" history to WPF RibbonApplicationMenu, and what is the best way to do so? I have looked into RecentFileList which is the closest thing I found on Google and SO, but it only applies to MenuItem. It is not flexible enough…
KMC
  • 18,443
  • 53
  • 146
  • 238
1
2 3