Is there any tricky ways to do this: in my text files I have a list of words, one word a line. I want search the word new-word in the lists with C-s. In order to search it I need to type the word in the minibuffer, if the new-word isn’t exist in the lists, I want to insert it in the list. It seems that I have to retype the word in the normal buffer, is there any ways to remember the word that I have just typed in the minibuffer and copy it into the normal buffer?
Is there any tricky ways to do this: in my text files I have
Share
Pressing RET immediately after C-s allows you to input the string using the normal minibuffer prompt which supports editing and history of past searches. In that mode you can use the regular buffer commands, such as C-SPC, M-w and C-y, to copy contents from the search minibuffer and paste it into a regular buffer, or vice versa.