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.

41 questions
2
votes
3 answers

Clean Windows 7 Start Menu MRU List

Is there a way to clean the most recently started applications from the Windows 7 start menu programmatically? I'm looking for some registry entries and/or files to delete so the corresponding items in the Winodws 7 start menu are removed.
Boris
  • 71
  • 1
  • 3
  • 8
2
votes
0 answers

vim insert-mode autocomplete using viminfo, recently opened files, sorted by word frequency

vim completion looks in dictionary, thesaurus and other buffers, but not the registers and mru files - I can do it by opening .viminfo and other most recently used files in background buffers. Can this be automated in vim. Also the completion (huge…
mosh
  • 1,402
  • 15
  • 16
2
votes
1 answer

Python: Trying to create a dict containing limited MRU entries

I am trying to create a dict which contains only a limited number of MRU entries (for helping in caching the output of a costly C function I call via ctypes). Here is the code: from collections import OrderedDict class MRUDict(OrderedDict): …
jamadagni
  • 1,214
  • 2
  • 13
  • 18
1
vote
1 answer

Dynamically manipulate a menu to create an MRU in a Windows app in Progress

I have a Windows application written in Progress. I'm working with version 10.1C. I would like to add MRU functionality to the menu, i.e. I want to add, remove and modify menu items in the application's File menu, to show the user's most recent…
RobertT
  • 1,213
  • 10
  • 12
1
vote
1 answer

Click event in RibbonGalleryCategory inside AuxiliaryPaneContent?

I have been following the example on the bottom of this page: http://msdn.microsoft.com/en-us/library/microsoft.windows.controls.ribbon.ribbonapplicationmenu.auxiliarypanecontent.aspx to get a "Most recent documents" list. I have the list populated…
Ragowit
  • 161
  • 2
  • 8
1
vote
1 answer

How to set up Sublime 2 to forget the files opened on the application close?

I'd like Sublime 2 to start with an empty window each time I start it (or with the single file opened if I start it by clicking on a file to edit). How can I achieve this behaviour?
Ivan
  • 63,011
  • 101
  • 250
  • 382
1
vote
0 answers

Update File Path in Most Recent Used Explorer List Which is Store in Binary

I'm having trouble understanding how to edit a file path of Binary Entry, what I'm trying to accomplish is to change the file path of the most recently used list after migrating from Folder Redirection to OneDrive Redirect to correct the shortcuts…
Joe Stellato
  • 558
  • 9
  • 31
1
vote
1 answer

WPF MRU List Inline

I am creating an MRU, Most Recent Used, class for my WPF application. I have the main class working and it manages the list of recent files. My issue is displaying the list of files inline. All of the examples that I can find display the list in a…
WPFNewbie
  • 2,464
  • 6
  • 34
  • 45
1
vote
1 answer

In Spyder, how can I disable MRU (most recently used) behavior when switching between file tabs?

In Spyder, how can I disable MRU (most recently used) behavior when switching between file tabs? I'd like the same behavior as in Chrome -- CTRL+TAB goes to the tab on the right, SHIFT+CTRL+TAB goes to the tab on the left.
Gabi
  • 413
  • 2
  • 8
1
vote
1 answer

Delphi ActionMainMenuBar MRU

I am trying to add an MRU list to an ActionMainMenuBar but cannot figure out how to do this, could someone please either point me to a MRU component that works with ActionMainMenuBar or perhaps tell me how to do this. Many thanks.
colin
  • 2,983
  • 6
  • 41
  • 49
1
vote
1 answer

WPF ObservableCollection not updating in ribbon view

I've created a C# WPF app with a RibbonApplicationMenu displaying a Most Recently Used (MRU) list. Unfortunately the display doesn't update when I select an existing file from the list or upload a new file. In the XAML I have:
Andy Smith
  • 13
  • 4
1
vote
1 answer

Which cache algorithm is used in ccache?

I was trying to find any information about cache algorithm that are used in ccache, but didn't find anything. So, does anyone know how ccache evict elements when max_size is reached? LRU? MRU? "Ring buffer"?
Jimilian
  • 3,859
  • 30
  • 33
1
vote
2 answers

Could someone help me to figure an example of MRU and CLOCK?

As title. There is a buffer pool with 3 pages that receives requests for the following page numbers: 2,4,4,2,5,2,1,1,3,1 The replacement policies are MRU and CLOCK. I am confused about how they work. Could someone show me? Thanks a…
Echo0831
  • 307
  • 2
  • 5
  • 14
1
vote
0 answers

MFC: List of most recently used doesn't show up in the menu (aka some terribly stupid bug I'm doing)

This makes me feel bad about myself: I can't convince the MRU list to show up in my MFC app's menu despite the fact that I'm doing all the same things that I did with my last project in which I used it, that is: (a) loading the MRU by…
tomascz
  • 235
  • 1
  • 13
1
vote
2 answers

C# : How to get most recently used instance from multiple running instances of my WPF application?

If there are multipple running applications, I need to get the most recently used. I know that I can find all running instances of my app using Process, but how to find from this list most recently used instance?