Vim Tips Wiki
(Change to TipImported template + severe manual clean)
(Change <tt> to <code>, perhaps also minor tweak.)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=1333
 
|id=1333
 
|previous=1332
 
|previous=1332
 
|next=1334
 
|next=1334
|created=September 19, 2006
+
|created=2006
 
|complexity=basic
 
|complexity=basic
 
|author=mz
 
|author=mz
 
|version=n/a
 
|version=n/a
 
|rating=12/6
 
|rating=12/6
  +
|category1=Tabs
  +
|category2=
 
}}
 
}}
The default is that when you close a tab, the tab to the right of the tab you just closed becomes the current tab. This mapping closes the current tab and makes the tab to the left of the tab you just closed the current tab. I like this to provide symmetry with <tt>tabopen</tt> (new tabs go to the right of the tab you were just on). This way, if I'm editing a file, and do something quickly in a new tab, then close that tab, I get back to my original tab. Obviously the keys for the mapping can be changed to whatever you want.
+
By default when a tab is closed, if another tab is open to the right of the tab that was just closed, it will become the "in focus" or current tab. However, when editing quickly this does not provide symmetry with the <code>:tabopen</code> command, because the <code>:tabopen</code> command opens a new tab to the right, and the <code>:tabclose</code> does restore focus to the original tab upon closing. With the following command in the .vimrc file, when editing a file, if the user needs to do something quickly in a new tab, they can use a mapping to close it and return to the original tab.
   
 
<pre>
 
<pre>
noremap &lt;silent&gt;&lt;C-S-w&gt; :if tabpagenr() != tabpagenr('$')&lt;cr&gt;:tabclose&lt;cr&gt;:if tabpagenr() &gt; 1&lt;cr&gt;:tabprev&lt;cr&gt;:endif&lt;cr&gt;:else&lt;cr&gt;:tabclose&lt;cr&gt;:endif&lt;cr&gt;
+
noremap <silent><C-S-w> :if tabpagenr() != tabpagenr('$')<CR>:tabclose<CR>:if tabpagenr() > 1<CR>:tabprev<CR>:endif<CR>:else<CR>:tabclose<CR>:endif<CR>
 
</pre>
 
</pre>
   
 
==Comments==
 
==Comments==
  +
The following accomplishes the same as above, but if a tab is not being closed, will just call the <code>:q</code> command.
   
  +
<pre>
----
 
  +
function! CloseSomething()
[[Category:Tabs]]
 
  +
if winnr("$") == 1 && tabpagenr("$") > 1 && tabpagenr() > 1 && tabpagenr() < tabpagenr("$")
  +
tabclose | tabprev
  +
else
  +
q
  +
endif
  +
endfunction
  +
map <C-x> :call CloseSomething()<CR>
  +
</pre>

Latest revision as of 06:21, 13 July 2012

Tip 1333 Printable Monobook Previous Next

created 2006 · complexity basic · author mz · version n/a


By default when a tab is closed, if another tab is open to the right of the tab that was just closed, it will become the "in focus" or current tab. However, when editing quickly this does not provide symmetry with the :tabopen command, because the :tabopen command opens a new tab to the right, and the :tabclose does restore focus to the original tab upon closing. With the following command in the .vimrc file, when editing a file, if the user needs to do something quickly in a new tab, they can use a mapping to close it and return to the original tab.

noremap <silent><C-S-w> :if tabpagenr() != tabpagenr('$')<CR>:tabclose<CR>:if tabpagenr() > 1<CR>:tabprev<CR>:endif<CR>:else<CR>:tabclose<CR>:endif<CR>

Comments[]

The following accomplishes the same as above, but if a tab is not being closed, will just call the :q command.

function! CloseSomething()
  if winnr("$") == 1 && tabpagenr("$") > 1 && tabpagenr() > 1 && tabpagenr() < tabpagenr("$")
    tabclose | tabprev
  else
    q
  endif
endfunction
map <C-x> :call CloseSomething()<CR>