-
-
Notifications
You must be signed in to change notification settings - Fork 589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
search and replace in project? #528
Comments
Assuming you are using Vim 7.4+, you can use Plugin specific:
Native:
This seems a bit complicated, but it's actually really powerful because you can run any other command, not just substitute. For example. you could run a macro on each matching quickfix item like this:
etc. More info on Related: #586 |
Can you please suggest how to do ALT-A in xfce-terminal? (it selects the terminal menu by default) |
Hi I want to achieve following features
https://github.com/rakshans1/dotfiles/blob/master/config/nvim/plugin/fzf.vim#L82 I am able to get till step 3 but not able to retrieve new search query for substitution |
ALT-A doesn't work for me using neovim, oh-my-zsh, and iTerm2. I have set the Option key to send Esc+ as recommended. Anyone else having this issue? |
@partounian I needed to put these in my Vim configuration file: if has('nvim')
tnoremap <a-a> <esc>a
tnoremap <a-b> <esc>b
tnoremap <a-d> <esc>d
tnoremap <a-f> <esc>f
endif |
it doesn't really solve the issue as all patterns in quicklst files are replaced, while I'd expect only selected lines are replaced |
Following is the correct command:
|
Does anyone know how to get last searched phrase from fzf? something like |
is there a way to customize ALT+a in vim? I have already assigned a tmux shortcut to that one.... |
@MushiTheMoshi did you figure this out? |
Found it #731 |
thanks! |
How to search and replace in project?
:Ag can search file , and then ?
The text was updated successfully, but these errors were encountered: