Tagged Questions
23
votes
12answers
10k views
How do you prefer to switch between buffers in Vim?
I've tried MiniBufExplorer, but I usually end up with several windows showing it or close it altogether. What I'd like is something like LustyJuggler with incremental search, the way I switch between ...
14
votes
2answers
3k views
Diff two tabs in Vim
Scenario: I have opened Vim and pasted some text. I open a second tab with :tabe and paste some other text in there.
Goal: I would like a third tab with a output equivalent to writing both texts to ...
8
votes
3answers
1k views
ViM: How to redirect ex command output into current buffer or file?
How can I redirect or pipe the output of an ex command into my current buffer or a file?
For example, I want to read the contents of all the registers into the current buffer, which in ex mode is ...
5
votes
4answers
356 views
How to survive the transition from tabbed-based to buffer-based coding (Vim)
I recently changed from notepad++ to Vim. In notepad++ I used to be aware of my open files by
seeing them as tabs, so when I wanted to close or change them I just pressed Shit-Tab or Ctrl-W. In Vim ...
3
votes
3answers
44 views
Ignoring certain commands in the wrong vim window
It's pretty common that I'm in a quickfix, nerdtree, or other special window and hit Ctrl-O, thinking I'm in my main window. What I'm trying to do is go back to my previous location in my main ...
3
votes
2answers
146 views
How to move to non-hidden buffer that exists in some window on some tab?
I work in Vim with lots of open buffers in various windows on various tabs. I know it's simple to just load one of the existing buffers into my current window. However, some of my buffers for large ...
3
votes
4answers
1k views
Unable to have the reverse of Ctrl-O in Vim
I want to have the reverse of
Ctrl-O
to be
Shift-Ctrl-O
The original reverse is
Ctrl-i
How can you remap the reverse of Ctrl-O in Vim to be Shift-Ctrl-O?
3
votes
3answers
833 views
Editing multiple buffers in vim: “((1) of 3)” in status line
When I switch between buffers in vim with ":bn" and ":bp", my status line shows the following handy information:
"foo.txt" 43 lines --88%-- ((1) of 3) 38,1 All
(I ...
2
votes
1answer
143 views
Same registers for different VIM tabs
I'm trying to make a copy paste from 1 file I have opened in a tab to another file I have opened in another tab.
So I use the visual block to get my selection, yank it, but when I switch to other ...
2
votes
1answer
130 views
Vim Buffer has been modified [closed]
Possible Duplicate:
What is a vimrc function to determine if a buffer has been modified?
I am trying to implement an AutoCmd in Vim that needs to be executed when the current buffer has ...
1
vote
1answer
88 views
Buffers per tab in vim
Is there a way I can configure vim to remember buffers based on their tab?
I am currently working on two projects, and I have each project in it's own tab, with it's own local directory. To navigate ...
1
vote
2answers
123 views
Vim: Changing Buffer Numbers
I usually like to use buffer numbers to go to buffers quickly. Unfortunately, after many searches, opening some files, etc., the buffer numbers get crazy:
Is there anyway to assign buffer numbers ...
0
votes
1answer
186 views
Unable to limit Ctrl-O to open only current buffers in Vim
I get the old buffers to be opened when I press
Ctrl-O
I want only to browse buffers which I have opened in the current Vim session.
How can you browse fast between current buffers in Vim with ...