I'm trying to do a project-wide find/replace in Spacemacs. I tried this:
SPC s a p
- Type the text I want to replace.
C-c C-e
At this point Spacemacs tells me text is read-only
. What am I missing to be able to preform the edit operation?
I'm trying to do a project-wide find/replace in Spacemacs. I tried this:
SPC s a p
C-c C-e
At this point Spacemacs tells me text is read-only
. What am I missing to be able to preform the edit operation?
Use SPC p R
to use projectile-replace
which runs interactive query-replace on all files in the project.
sed
wasn't enough. Thanks! –
Curbstone SPC p %
does the same thing but has regex functionality included –
Mellow © 2022 - 2024 — McMap. All rights reserved.
SPC f S
to useevil-write-all
for saving all unsaved buffers. – Shererd