cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar
0 Kudos

Clear saved Search/Find/Replace

When you use Edit > Search > Find or Edit > Search > Replace , the search and/or replace terms you have used previously are stored and available in a drop down in the Find/Replace Dialog.  This can be annoying at times, for instance when typing a new search term that starts with the same letter as a previous search term, but the first character is a different capitalization, it automatically switches the first character to the case of the previous search terms first character.  Also, this could be a potentially an issue if you did not want to display previous search terms for privacy or confidentiality reasons.  

 

It would be nice to add:

1) a preference to allow to not store that history

2) an option to delete the find/replace history

3) an option to retain but not use the find/replace history in the Search/Replace dialog

4) an option to not overwrite the case of new search term that is entered manually

 

I don't think this is in the JMP Documentation, but you can remove that search history manually by deleting this file in Windows
C:\Users\<UserID>\AppData\Roaming\SAS\JMP\16\FindMRU.txt

 

and this simple script will remove that file

names default to here(1);

// remove previous search and replace history

fname = "FindMRU.txt";
fpath = Get Path Variable("$USER_APPDATA");
if(File Exists(fpath || fname),
Delete File(fpath || fname)
);

 

 

2 Comments
SamGardner
Level VII
Status changed to: Investigating
 
Status changed to: Acknowledged