Vim Tips Wiki
(reword intro some so we don't discourage efficient use of tabs)
Tags: Visual edit apiedit
(19 intermediate revisions by 7 users not shown)
Line 3: Line 3:
 
|previous=1343
 
|previous=1343
 
|next=1348
 
|next=1348
|created=September 29, 2006
+
|created=2006
 
|complexity=basic
 
|complexity=basic
|author=mchenryk
+
|author=
 
|version=7.0
 
|version=7.0
 
|rating=108/42
 
|rating=108/42
|category1=Getting_started
+
|category1=Getting started
 
|category2=Tabs
 
|category2=Tabs
 
}}
 
}}
Vim 7.0 introduced the "tab pages" feature. Tab pages in Vim are rather different from the tabbed editing common in other editors, even though presumably these other editors inspired the creation of Vim's tab pages. In other editors, every time you open a new file, it is loaded into a new tab. Usually in these other editors, you can never have more than one file shown in a single tab, nor can you have more than one tab display a given file. In Vim, every file is loaded into a buffer, which can be displayed in any number of windows in any number of tabs. The easiest way to think about tab pages in Vim is to consider them to be viewports, layouts, or workspaces.
+
This tip provides an introduction to opening, navigating, and working with tab pages. In Vim, each file is loaded into a buffer, which can be displayed in any number of windows, in any number of tabs. The easiest way to think about tab pages in Vim is to consider them to be viewports, layouts, or workspaces.
   
  +
In many editors (not Vim), each file is opened in a new tab, and one tab can show only one file, and one file cannot appear in more than one tab. Vim's tab pages do not have these limitations, and tabs are a convenient way to organize your work. See [[Quick tips for using tab pages]] for examples of how tabs can be used to their full potential.
In other words, Vim's tab pages can be a convenient way to organize your work. However, tab pages in Vim are ''not'' a convenient way to force Vim to act like other editors with a multi-page one-file-per-max-size-window setup. Trying to force one file per tab page will prove very difficult (though [http://cream.sourceforge.net/ Cream] is rumored to have done it) and if completely successful will only serve to limit your use of Vim's powerful features.
 
   
  +
Trying to configure Vim to always have ''one file per tab'' will not be successful, and would remove much of the power of Vim. However, when you want to edit a file, it is easy to use <code>:tabe</code> instead of <code>:e</code> so that ''usually'' there is one file per tab. You can also launch files in new tabs under [[Launch files in new tabs under Windows|Windows]] and [[Launch files in new tabs under Unix|Unix]].
This tip will give you a basic introduction to opening, navigating, and working with tab pages. For some good examples of how Vim's tab pages can be used to their full potential, see part two of this "using tab pages" introduction: [[Quick tips for using tab pages]]. If you're looking for a one-file-per-tab setup, see [[Rolodex Vim]] or the {{help|prefix=no|id='hidden'}} option combined with efficient use of the buffer list via a plugin such as {{script|id=1984|text=FuzzyFinder}}, {{script|id=1890|text=LustyExplorer}} or {{script|id=42|text=BufExplorer}}.
 
   
 
An alternative to ''one file per tab'' is to learn to use the {{help|prefix=no|id='hidden'}} option combined with efficient use of the buffer list via a plugin such as {{script|id=1984|text=FuzzyFinder}}, {{script|id=1890|text=LustyExplorer}} or {{script|id=42|text=BufExplorer}}.
==Basic Navigation==
 
  +
  +
==Opening and closing tabs==
 
When starting Vim, the <code>-p</code> option opens each specified file in a separate tab (up to the value of the <code>'tabpagemax'</code> option). Examples:
 
<pre>
 
<pre>
  +
vim -p first.txt second.txt
:tabs list all tabs
 
 
gvim -p *.txt
:tabm 0 move the current tab first
 
:tabm {i} move the current tab to the i+1 position
 
:tabn move to (view) the next tab
 
:tabp move to (view) the previous tab
 
:tabfirst move to the first tab
 
:tabf {file} open a new tab with the filename given, searching the 'path' to find it
 
:tabc close the current tab
 
:tabc {i} close the i-th tab
 
:tabo close other tabs
 
 
</pre>
 
</pre>
   
  +
Once Vim has been launched, there are many commands that directly create or close tabs:
==Key mappings==
 
For basic tab navigation, it is most convenient to use the built-in normal-mode commands:
 
 
<pre>
 
<pre>
  +
:tabedit {file} edit specified file in a new tab
gt move to (view) the next tab
 
 
:tabfind {file} open a new tab with filename given, searching the 'path' to find it
gT move to (view) the previous tab
 
{i}gt move to (view) the tab in the i-th position
+
:tabclose close current tab
 
:tabclose {i} close i-th tab
  +
:tabonly close all other tabs (show only the current tab)
 
</pre>
 
</pre>
   
  +
The <code>:tabfind</code> command uses Vim's <code>'path'</code> option to determine which directories should be searched when opening the specified file. For example, the following tells Vim to look in the directory containing the current file (<code>.</code>), then the current directory (empty text between two commas), then each directory under the current directory ('<code>**</code>').
Jumping to a specific tab with <tt>{i}gt</tt> is much easier if you set up your tabline to [[Show tab number in your tab line|show the tab number]].
 
 
<pre>
  +
:set path=.,,**
 
</pre>
   
  +
Remember, as with any Vim commands, you only need type enough characters in the command for Vim to be able to unambiguously identify it. For example, you could use <code>:tabe</code> and <code>:tabf</code> instead of <code>:tabedit</code> and <code>:tabfind</code>.
Opening and closing tabs can be made faster and more convenient if you add mappings such as the following to your [[vimrc]]:
 
  +
  +
In addition to these commands, because Vim already has a plethora of commands for working with split windows, Vim provides the {{help|prefix=no|:tab}} command-line modifier, to use a new tab instead of a new window for commands that would normally split a window. For example:
 
<pre>
 
<pre>
 
:tab ball show each buffer in a tab (up to 'tabpagemax' tabs)
map <C-t> :tabnew<CR>
 
  +
:tab help open a new help window in its own tab page
map <C-left> :tabp<CR>
 
  +
:tab drop {file} open {file} in a new tab, or jump to a window/tab containing the file if there is one
map<C-right> :tabn<CR>
 
  +
:tab split copy the current window to a new tab of its own
 
</pre>
 
</pre>
   
  +
A command like <code>:sp myfile.txt</code> creates a new window in the current tab editing the specified file. That window can be ''moved'' to a new tab by pressing Ctrl-W <code>T</code>, and can be ''copied'' to a new tab with the command <code>:tab sp</code> (split the current window, but open the split in a new tab).
Then in gvim you have the following commands:
 
* Ctrl-t &ndash; open a new tab
 
* Ctrl-left arrow &ndash; move one tab to the left
 
* Ctrl-right arrow &ndash; move one tab to the right
 
   
  +
You can type Ctrl-W <code>c</code> to close the current window. If that window is the last window visible in a tab, the tab is also closed (if another tab page is currently open).
These mappings are similar to those commonly used in other tabbed environments such as web browsers. Beware of mapping Ctrl-T, however, as it overrides a useful built-in command. See {{help|CTRL-T}}. You almost certainly should ''not'' map {{help|prefix=no|id=CTRL-W}} to anything, as it is a precursor to many useful built-in commands.
 
   
  +
If the file you are editing contains the name of another file, you can put the cursor on the name and type <code>gf</code> to edit the file ([[Open file under cursor|goto file]]). If you type Ctrl-W <code>gf</code> the file is displayed in a new tab.
==Fixing tips on tab pages==
 
:''This section is a temporary area to plan merging/fixing existing tips on tab pages.''
 
{{Todo}}
 
*No point having a tip change the default keybindings for <tt>:tabn</tt> and <tt>:tabp</tt>. Explain the defaults.
 
*Merge in any useful comments from below.
 
*Perhaps rename to "Using tab pages" (a simpler title that attempts to avoid confusion with the tab key).
 
   
  +
In gvim, you can right click the tab label bar for a popup menu with Close, New&nbsp;Tab, and Open&nbsp;Tab... items.
;Relevant tips
 
*[[VimTip95|95 Capture ex command output]] redirect output to a new tab
 
*[[VimTip133|133 Windo and Bufdo]] tabdo and keep current tab
 
*[[VimTip1221|1221 Alternative tab navigation]] mappings to jump to a tab
 
*[[VimTip1233|1233 Move the current tabpage forward or backward]] move current tab page
 
*[[VimTip1242|1242 Move through the buffer list without wrecking your window/tab layout]] <tt>set switchbuf=usetab</tt>
 
*[[VimTip1247|1247 Tabclose instead of quit-all]] something about closing tab pages
 
*[[VimTip1295|1295 Select tab page with a key]] tab navigation mappings
 
*[[VimTip1309|1309 Safari style keybindings for tab navigation]] more tab navigation mappings
 
*[[VimTip1317|1317 Open every buffer in its own tabpage]] open each buffer in a tab page
 
*[[VimTip1333|1333 Have focus on left tab after tabclose]] close tab and focus on previous tab
 
*1347 Quick tab navigation and opening ''(this tip)''
 
*[[VimTip1491|1491 Call TortoiseSVN commands from within Vim]]
 
*[[VimTip1554|1554 Move current window between tabs]] move current window between tabs
 
   
 
==Navigation==
;Open files in tabs
 
  +
<pre>
*[[VimTip1225|1225 Open files in multiple tabs using the Windows Context Menu]]
 
 
:tabs list all tabs including their displayed windows
*[[VimTip1314|1314 Add open-in-tabs context menu for Windows]]
 
 
:tabm 0 move current tab to first
*[[VimTip1440|1440 Launch files in new tabs under Windows]]
 
 
:tabm move current tab to last
*[[VimTip1552|1552 Launch files in new tabs under Unix]]
 
 
:tabm {i} move current tab to position i+1
   
 
:tabn go to next tab
==Comments==
 
 
:tabp go to previous tab
Does not work in [ax]term.
 
 
:tabfirst go to first tab
  +
:tablast go to last tab
  +
</pre>
   
  +
In normal mode, you can type:
----
 
  +
<pre>
Or you could use <tt>gt</tt> and <tt>gT</tt> without having to move your hands across the keyboard. Also, <tt>gt</tt> can take the tab number to jump directly to a tab.
 
 
gt go to next tab
 
gT go to previous tab
  +
{i}gt go to tab in position i
  +
</pre>
  +
Note that the gt command counts from one. That means 3gt will jump to the third tab. Also note is 0gt and 1gt mean the same thing: jumping to the first tab.
   
  +
When using gvim, in normal mode and in insert mode, you can type:
----
 
I use Vim in Windows, so remapping C-Left isn't great for me. These are the mappings I use:
 
 
<pre>
 
<pre>
  +
Ctrl-PgDn go to next tab
" Tab mappings
 
  +
Ctrl-PgUp go to previous tab
map &lt;S-Up> :tabclose<CR>
 
map &lt;S-Down> :tabnew<CR>
 
map &lt;S-Left> gT
 
map &lt;S-Right> gt
 
map &lt;S-PageUp> :tabfirst<CR>
 
map &lt;S-PageDown> :tablast<CR>
 
 
</pre>
 
</pre>
   
 
Jumping to a specific tab with <code>{i}gt</code> is easier if you set up your tabline to [[Show tab number in your tab line|show the tab number]].
I used down for a new tab because I'm used to that from Opera's mouse gestures.
 
   
  +
==Switching to another buffer==
----
 
  +
By default, when switching to another buffer, the current buffer is hidden and its window is used to display the requested buffer. However, some commands can be configured with the <code>'switchbuf'</code> option to switch to another window, possibly in another tab, if the buffer is currently displayed in another window. {{help|'switchbuf'}}
I prefer <tt>gt</tt> and <tt>gT</tt>. In any case <C-PgUp> and <C-PgDn> are the defaults for the same operations.
 
   
  +
With the following in your [[vimrc]], you can switch to the next buffer by pressing F8, or the previous buffer by pressing Shift-F8. If the target buffer is already displayed in a window in one of the tabs, that window will be displayed. Otherwise, the current window will be split, and the target buffer will be displayed in the new window.
Just opening a new tab is kind of useless. I find <tt>:tabe <filename></tt> more useful.
 
  +
<pre>
  +
set switchbuf=usetab
  +
nnoremap <F8> :sbnext<CR>
  +
nnoremap <S-F8> :sbprevious<CR>
  +
</pre>
   
  +
If you prefer to open a new ''tab'' instead of a new split window, you can set <code>switchbuf</code> to <code>usetab,newtab</code>.
----
 
Instead of <tt>:tabe filename</tt>, I like <tt>:tabf filename</tt>, because it walks the path to find the name, instead of relying on an required explicit path/filename.
 
   
  +
Using this technique will cycle between buffers without disturbing the current window or tab layout, providing each buffer is already in a window in a tab. Each listed buffer ({{help|'buflisted'}}) is visited in order of buffer number.
----
 
If you are working with tags or cscope, <Ctrl-T> is for popping the stack.
 
   
  +
Note, that this option affects more than just the commands mapped above. Particularly, it affects the quickfix window. See the help for details.
----
 
I think this can be condensed to:
 
<pre>
 
:tab sp<CR>
 
</pre>
 
   
  +
==Shortcuts==
Alternative way to move current window to a new tab is: <Ctrl-w> T (capital).
 
  +
Here are some ideas for entries you may want to add to your [[vimrc]].
   
  +
With the following mappings (which require gvim), you can press Ctrl-Left or Ctrl-Right to go to the previous or next tabs, and can press Alt-Left or Alt-Right to move the current tab to the left or right.
===Possibly useful information from tip 1313 (now removed)===
 
 
<pre>
 
<pre>
  +
nnoremap <C-Left> :tabprevious<CR>
:tabo " only this tab (close other tabs)
 
  +
nnoremap <C-Right> :tabnext<CR>
:tab ball " show each buffer in a tab
 
  +
nnoremap <silent> <A-Left> :execute 'silent! tabmove ' . (tabpagenr()-2)<CR>
 
  +
nnoremap <silent> <A-Right> :execute 'silent! tabmove ' . tabpagenr()<CR>
" Set tab label to show buffer number, filename, if modified.
 
:set guitablabel=%n/\ %t\ %M
 
 
</pre>
 
</pre>
   
  +
With the following, you can press F8 to show all buffers in tabs, or to close all tabs (toggle: it alternately executes <code>:tab ball</code> and <code>:tabo</code>).
When starting Vim, the <tt>-p</tt> option opens each file in a tab, for example:
 
 
<pre>
 
<pre>
  +
let notabs = 0
gvim -p *.txt
 
 
nnoremap <silent> <F8> :let notabs=!notabs<Bar>:if notabs<Bar>:tabo<Bar>:else<Bar>:tab ball<Bar>:tabn<Bar>:endif<CR>
 
</pre>
 
</pre>
   
  +
The following command abbreviation allows typing <code>:tabv myfile.txt</code> to view the specified file in a new tab; the buffer is read-only and nomodifiable so you cannot accidentally change it.
===From comment in tip 259 (now removed)===
 
Press F8 to show all buffers in tabs, or to close all tabs (toggle).
 
 
<pre>
 
<pre>
  +
cabbrev tabv tab sview +setlocal\ nomodifiable
let g:toggleTabs = 0
 
nnoremap <silent> <F8> :if g:toggleTabs<Bar>:tabo<Bar>:let g:toggleTabs = 0<Bar>:else<Bar>:tab ball<Bar>:let g:toggleTabs = 1<Bar>:endif<CR>
 
 
</pre>
 
</pre>
  +
----
 
  +
==See also==
Whereas it's definitely useful to have a tip covering '''tab pages''', I'd like to see a disclaimer explaining what tab pages are not, i.e. the same as tabs in a tabbed editor like Eclipse or Visual Studio. This (admittedly rather bold) text is what #vim uses to help "misguided" users realize what tab pages are not:
 
  +
*We have ''many'' tips about [[:Category:Tabs|using tab pages]]
:''Tabs are not buffers, don't try to force them to act like buffers. Consider tabs like viewports, layouts or workspaces. Tabs is a terrible name. Trying to setup 1 tab == 1 buffer is an exercise in futility. Do :set hidden and get started. Get FuzzyFinder, LustyExplorer or BufExplorer to make getting around your buffers easier.''
 
  +
We also recommend that new users read [http://vim.pastey.net/115548 godlygeek's introduction to buffers, windows and tab pages]. That we have created these quick responses might give you a clue as to how many questions we get concerning the 1 tab == 1 buffer setup. :) ([[User:Spiiph|Spiiph]] 22:32, 8 August 2009 (UTC))
 
  +
::There is a small disclaimer in [[:Category:Tabs]]. Feel free to make the wording stronger if you feel it needs it. --[[User:Fritzophrenic|Fritzophrenic]] 00:28, 9 August 2009 (UTC)
 
 
==Fixing tips on tab pages==
:::Ah, that's fine. I didn't find it before, but maybe that's because I wasn't really looking. I wonder how many will find it there though. ([[User:Spiiph|Spiiph]] 11:09, 9 August 2009 (UTC))
 
 
:''This section is a temporary area to plan merging/fixing existing tips on tab pages.''
 
{{Todo}}
  +
*Perhaps merge in some information from tips listed below (or add as 'see also').
  +
*'''I think the tip should be renamed to "Using tab pages"? Any comments?'''
  +
:
  +
:- Put some basic commands up top (move between tabs, open a new tab in VIM etc). This aught to answer 90% of the questions, then go into :tabedit {file} commands which is much more details than most people want or care about.
  +
::Yes, this tip is much less of an introduction and covers much more detail now. I was thinking about this tip as a "How to use tab pages" and [[Quick tips for using tab pages]] as a "Why to use tab pages" but I don't think there's that much reason to make those the names. The pages really don't have that much to do with each other. --[[User:Fritzophrenic|Fritzophrenic]] 15:59, May 20, 2010 (UTC)
  +
 
;Navigation mappings
 
*[[VimTip1221|1221 Alternative tab navigation]] mappings to jump to a tab
 
*[[VimTip1295|1295 Select tab page with a key]] tab navigation mappings
 
*[[VimTip1309|1309 Safari style keybindings for tab navigation]] more tab navigation mappings
  +
  +
;Miscellaneous
 
*[[VimTip1247|1247 Tabclose instead of quit-all]] something about closing tab pages
 
*[[VimTip1317|1317 Open every buffer in its own tabpage]] open each buffer in a tab page
 
*[[VimTip1333|1333 Have focus on left tab after tabclose]] close tab and focus on previous tab
  +
 
==Comments==

Revision as of 18:07, 4 November 2015

Tip 1347 Printable Monobook Previous Next

created 2006 · complexity basic · version 7.0


This tip provides an introduction to opening, navigating, and working with tab pages. In Vim, each file is loaded into a buffer, which can be displayed in any number of windows, in any number of tabs. The easiest way to think about tab pages in Vim is to consider them to be viewports, layouts, or workspaces.

In many editors (not Vim), each file is opened in a new tab, and one tab can show only one file, and one file cannot appear in more than one tab. Vim's tab pages do not have these limitations, and tabs are a convenient way to organize your work. See Quick tips for using tab pages for examples of how tabs can be used to their full potential.

Trying to configure Vim to always have one file per tab will not be successful, and would remove much of the power of Vim. However, when you want to edit a file, it is easy to use :tabe instead of :e so that usually there is one file per tab. You can also launch files in new tabs under Windows and Unix.

An alternative to one file per tab is to learn to use the 'hidden' option combined with efficient use of the buffer list via a plugin such as FuzzyFinder, LustyExplorer or BufExplorer.

Opening and closing tabs

When starting Vim, the -p option opens each specified file in a separate tab (up to the value of the 'tabpagemax' option). Examples:

vim -p first.txt second.txt
gvim -p *.txt

Once Vim has been launched, there are many commands that directly create or close tabs:

:tabedit {file}   edit specified file in a new tab
:tabfind {file}   open a new tab with filename given, searching the 'path' to find it
:tabclose         close current tab
:tabclose {i}     close i-th tab
:tabonly          close all other tabs (show only the current tab)

The :tabfind command uses Vim's 'path' option to determine which directories should be searched when opening the specified file. For example, the following tells Vim to look in the directory containing the current file (.), then the current directory (empty text between two commas), then each directory under the current directory ('**').

:set path=.,,**

Remember, as with any Vim commands, you only need type enough characters in the command for Vim to be able to unambiguously identify it. For example, you could use :tabe and :tabf instead of :tabedit and :tabfind.

In addition to these commands, because Vim already has a plethora of commands for working with split windows, Vim provides the :tab command-line modifier, to use a new tab instead of a new window for commands that would normally split a window. For example:

:tab ball         show each buffer in a tab (up to 'tabpagemax' tabs)
:tab help         open a new help window in its own tab page
:tab drop {file}  open {file} in a new tab, or jump to a window/tab containing the file if there is one
:tab split        copy the current window to a new tab of its own

A command like :sp myfile.txt creates a new window in the current tab editing the specified file. That window can be moved to a new tab by pressing Ctrl-W T, and can be copied to a new tab with the command :tab sp (split the current window, but open the split in a new tab).

You can type Ctrl-W c to close the current window. If that window is the last window visible in a tab, the tab is also closed (if another tab page is currently open).

If the file you are editing contains the name of another file, you can put the cursor on the name and type gf to edit the file (goto file). If you type Ctrl-W gf the file is displayed in a new tab.

In gvim, you can right click the tab label bar for a popup menu with Close, New Tab, and Open Tab... items.

Navigation

:tabs         list all tabs including their displayed windows
:tabm 0       move current tab to first
:tabm         move current tab to last
:tabm {i}     move current tab to position i+1

:tabn         go to next tab
:tabp         go to previous tab
:tabfirst     go to first tab
:tablast      go to last tab

In normal mode, you can type:

gt            go to next tab
gT            go to previous tab
{i}gt         go to tab in position i

Note that the gt command counts from one. That means 3gt will jump to the third tab. Also note is 0gt and 1gt mean the same thing: jumping to the first tab.

When using gvim, in normal mode and in insert mode, you can type:

Ctrl-PgDn     go to next tab
Ctrl-PgUp     go to previous tab

Jumping to a specific tab with {i}gt is easier if you set up your tabline to show the tab number.

Switching to another buffer

By default, when switching to another buffer, the current buffer is hidden and its window is used to display the requested buffer. However, some commands can be configured with the 'switchbuf' option to switch to another window, possibly in another tab, if the buffer is currently displayed in another window. :help 'switchbuf'

With the following in your vimrc, you can switch to the next buffer by pressing F8, or the previous buffer by pressing Shift-F8. If the target buffer is already displayed in a window in one of the tabs, that window will be displayed. Otherwise, the current window will be split, and the target buffer will be displayed in the new window.

set switchbuf=usetab
nnoremap <F8> :sbnext<CR>
nnoremap <S-F8> :sbprevious<CR>

If you prefer to open a new tab instead of a new split window, you can set switchbuf to usetab,newtab.

Using this technique will cycle between buffers without disturbing the current window or tab layout, providing each buffer is already in a window in a tab. Each listed buffer (:help 'buflisted') is visited in order of buffer number.

Note, that this option affects more than just the commands mapped above. Particularly, it affects the quickfix window. See the help for details.

Shortcuts

Here are some ideas for entries you may want to add to your vimrc.

With the following mappings (which require gvim), you can press Ctrl-Left or Ctrl-Right to go to the previous or next tabs, and can press Alt-Left or Alt-Right to move the current tab to the left or right.

nnoremap <C-Left> :tabprevious<CR>
nnoremap <C-Right> :tabnext<CR>
nnoremap <silent> <A-Left> :execute 'silent! tabmove ' . (tabpagenr()-2)<CR>
nnoremap <silent> <A-Right> :execute 'silent! tabmove ' . tabpagenr()<CR>

With the following, you can press F8 to show all buffers in tabs, or to close all tabs (toggle: it alternately executes :tab ball and :tabo).

let notabs = 0
nnoremap <silent> <F8> :let notabs=!notabs<Bar>:if notabs<Bar>:tabo<Bar>:else<Bar>:tab ball<Bar>:tabn<Bar>:endif<CR>

The following command abbreviation allows typing :tabv myfile.txt to view the specified file in a new tab; the buffer is read-only and nomodifiable so you cannot accidentally change it.

cabbrev tabv tab sview +setlocal\ nomodifiable

See also


Fixing tips on tab pages

This section is a temporary area to plan merging/fixing existing tips on tab pages.

 TO DO 

  • Perhaps merge in some information from tips listed below (or add as 'see also').
  • I think the tip should be renamed to "Using tab pages"? Any comments?
- Put some basic commands up top (move between tabs, open a new tab in VIM etc). This aught to answer 90% of the questions, then go into :tabedit {file} commands which is much more details than most people want or care about.
Yes, this tip is much less of an introduction and covers much more detail now. I was thinking about this tip as a "How to use tab pages" and Quick tips for using tab pages as a "Why to use tab pages" but I don't think there's that much reason to make those the names. The pages really don't have that much to do with each other. --Fritzophrenic 15:59, May 20, 2010 (UTC)
Navigation mappings
Miscellaneous

Comments