After executing :Explore **/*.py to match *.py under the current directory tree, I cannot execute :Pexplore and :Nexplore using <s-up> an <s-down>.
I have tried both SHIFT+<up> and s+<up> etc., but nothing happens.
Why can't I use these key bindings to go to the previous/next match?
Edit: Starting Vim using a plain vimrc (:set nocompatible | runtime! plugin/**/*.vim) results in <s-up> just moving the cursor up (likewise for <s-down>).
:Pexplorewith<s-up>? You press the key and nothing happens, or you get an error message, if you do which one? What do you mean by you tried bothSHIFT+<up>ands+<up>? Did you try to create a mapping with this syntax or how did you use these two things? Also as usual, is it possible it comes from your vimrc? Have you tried without a vimrc? And finally are you using vim/neovim/both, if you use both do you see a difference between each other regarding this issue? – statox Feb 24 '21 at 12:32vim -u /dev/null, but in that casenetrwisn't loaded, so can't test it in that case. Do you know which command is used to loadnetrwfrom ~/.vimrc`? – Shuzheng Feb 24 '21 at 12:47filetype plugin onandruntime plugin/netrwPlugin.vimin atmp.vimrcfile and start vim withvim -u tmp.vimrc– statox Feb 24 '21 at 13:11filetype plugin onsufficient? I tried execute that command aftervim -u NONE, but:Explorewas not there. I don't haveruntime plugin/netrwPlugin.vimin my normal~/.vimrc. – Shuzheng Feb 24 '21 at 13:13vimrcand load it usingvim -u vimrc. – Shuzheng Feb 24 '21 at 13:14runtimeis necessary: Actually it would also work if you putset nocpin the temporary vimrc. I think that when you start vim with a custom vimrc (but without the-uflag) it automatically start in no compatible mode (which source stuff inruntime) when you use-uyou either have to set nocompatible yourself or to source the runtime files by yourself. – statox Feb 24 '21 at 13:17<s-up>still doesn't work? Or is it something else? Also please edit your question to put all this information directly in the question so that people don't have to dig the comments to understand what's going on: You'll have better chances of getting a good answer this way :) – statox Feb 24 '21 at 13:17netrwworks now using a plain vimrc (:set nocompatible | runtime! plugin/**/*.vim), but<s-up>just moves the cursor up. – Shuzheng Feb 24 '21 at 13:51