We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Wouldn't it make sense to have h working as - and l working as <enter>? At least as alternative keybindings? Exactly as ranger does it, basically.
h
-
l
<enter>
The text was updated successfully, but these errors were encountered:
Here's one method for this.
Add this function:
function! NetrwBuf() nmap <buffer> h - nmap <buffer> l <CR> endfunction
Add this autocmd to an augroup to run for each netrw buffer
augroup FILETYPES autocmd FileType netrw call NetrwBuf() augroup END
Now it behaves sort of like ranger
Sorry, something went wrong.
No branches or pull requests
Wouldn't it make sense to have
h
working as-
andl
working as<enter>
? At least as alternative keybindings? Exactly as ranger does it, basically.The text was updated successfully, but these errors were encountered: