-
Notifications
You must be signed in to change notification settings - Fork 19
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
Disable vsplit while bulkrenaming #39
Comments
Hello. The second window provides original file names for reference, which might be helpful if you change them completely or reorder lines. You can provide implementation that does nothing by creating " override standard handling of bulk rename to do nothing
let b:did_ftplugin = 1 |
@xaizek I’ve tried your suggestion with Vifm 0.11. If I also have the plugin Here’s the minimal " vim:fdm=marker
" Required by many plugins
set nocompatible " be iMproved
filetype off
" Plugin List
call plug#begin('~/.config/nvim/plugged')
Plug 'vifm/vifm.vim'
" Automatically follow symlinks
Plug 'moll/vim-bbye' " optional dependency
Plug 'aymericbeaumet/vim-symlink'
call plug#end()
" override standard handling of bulk rename to do nothing
let b:did_ftplugin = 1 |
Putting it in general configuration doesn't make sense, it should be in |
Oh, I misunderstood, then. But if I take a look at So, what can I do in the latest version to disable all the extra splits? |
There is |
Oh, I see. So it has to be in It works now. Thank you for your answers! |
Hi.
After installing vifm.vim, the behavior of bulkrenaming changed, irrespective of whether I am running vifm within vim: it creates a vertical split with two vim windows containing the names of the selected files.
I wonder if that is the expected behavior and if I can disable the vertical split (my display is rather small, and, so, it makes a real difference to have just one window).
Thanks a lot in advance!
The text was updated successfully, but these errors were encountered: