I wonder if I can leave ido I donβt remember my history and only show the completion of the files in the current directory when I search for the file. I understand that this history function is useful from time to time, but I often end up editing the wrong file because I think I am editing the file called 'abc.txt' in the current directory, but in fact I am editing the file with the same name to another that I visited earlier (often happens when the current directory does not have "abc.txt", as I mistakenly assume). From reading the ido.el file, I decided to install .emacs in my file (also evaluated these expressions in the emacs instance):
(custom-set-variables '(ido-enable-last-directory-history nil) '(ido-record-commands nil) )
and deleted the file named .ido.last in ~ /, but still it remembers some previous files that I visited before making these changes. How can I clear my previous history, and I'm not quite sure what the difference between the two variables is above, but it seems to have done the trick to keep ido from remembering the files that I visit in the future?
Thank you for your help!
emacs elisp
hatmatrix
source share