I have this line in my init.el:
(global-set-key (kbd "C-c g") (lambda() (interactive) (find-file "~/Dropbox/myorgfiles")))
So when I type C-c g
I get the directory contents of the myorgfiles
folder.
But I would like to be able to start typing and get search results for that pattern within that myorgfiles
folder.
How could I manage to do this? At the moment the individual keyboard strokes have different functions.
C-x C-f
and start typing - what am I missing? – NickD Jul 05 '20 at 17:45