benma

Results 434 comments of benma

I am working around this by just going through the history (up arrow inside the regexp/replace prompts), which is not ideal, but good enough for me so that I have...

Can you provide a step by step instruction on how to produce the bug/break? Can you make a PR?

It's not an artefact really, it is all the locations that match. If you hit enter and start typing the replacement, you will see the replacement appear in all those...

> since if one wants to replace the empty string then one knows it matches after every character Same could be said for any other pattern, but this package is...

In the search prompt of `vr/replace`, you can toggle the modifiers with `C-c i`, `C-c m`, etc., and they generate the proper prefix, i.e. `(?im)`. Adding the same feature to...

> It does appear that `C-c i` works in `vr/isearch-forward` I don't think it does. It is defined in `vr/minibuffer-regexp-keymap`, which is not used during isearch. As mentioned [here](https://github.com/benma/visual-regexp-steroids.el/issues/12#issuecomment-135755887), I...

Can you check with `emacs -q` and loading only the vr packages? Hitting `C-c i` during vr/isearch-forward only quits the search for me, and I don't see any code in...

This is very bizarre. In vr/isearch-forward, there is no code to prepend the `(?...)` prefix, let alone make that visible in the prompt. > I've got a few isearch customizations...

This package is supposed to work with all Python versions, including python2 and python3. What was the issue that you ran into exactly?

Thanks. In this case you should add another `defcustom` var which can be customized using `customize-variable` - the `vr--` vars are considered internal. Not sure what happens when you use...