Hi, The new window identifier is not described in windows.txt. An update to the windows.txt file is attached.
- Yegappan -- -- You received this message from the "vim_dev" 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 --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt index f4c9001..758cee3 100644 --- a/runtime/doc/windows.txt +++ b/runtime/doc/windows.txt @@ -76,6 +76,14 @@ places where a Normal mode command can't be used or is inconvenient. The main Vim window can hold several split windows. There are also tab pages |tab-page|, each of which can hold multiple windows. +Each window has a unique identifier and the identifier will not change within a +Vim session. The |win_getid()| and |win_id2tabwin()| functions can be used to +convert between the window/tab number and the identifier. + +Each buffer has a unique number and the number will not change within a Vim +session. The |bufnr()| and |bufname()| functions can be used to convert +between a buffer name and the buffer number. + ============================================================================== 2. Starting Vim *windows-starting*
