Excerpts from Yoshi's message of Thu Aug 19 00:47:20 +0200 2010:
> (I'm not sure if this is a valid question, but let me ask)
> 
> I'm using vim to edit several source files using buffer switch like:
> :b [tab]
> 
> But it requires saving the current buffer, and I don't want to save.
> Is there any way not to save current buffer, and still use multiple
> buffers(files)?

I map m-1 m-2 to tab 1,2 etc. This way I have O(1) access to 3 files or
more I'm currently focusing on.

" m-X key jump to tab X
for i in range(1,8)
  exec 'map <m-'.i.'> '.i.'gt'
endfor

They may be helpful to you as well.

Marc Weber

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to