diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-12 22:23:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-12 22:23:25 +0200 |
commit | b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f (patch) | |
tree | 4102b935644caa2544138f3abb1d038523568d94 /runtime/doc/usr_41.txt | |
parent | ebcccad573a7722e16cf2dd435cc62b61f61d9cc (diff) | |
download | vim-git-b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f.tar.gz |
patch 7.4.2204v7.4.2204
Problem: It is not easy to get information about buffers, windows and
tabpages.
Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan
Lakshmanan)
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r-- | runtime/doc/usr_41.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt index b58edb9c0..db2b98674 100644 --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -1,4 +1,4 @@ -*usr_41.txt* For Vim version 7.4. Last change: 2016 Jul 24 +*usr_41.txt* For Vim version 7.4. Last change: 2016 Aug 07 VIM USER MANUAL - by Bram Moolenaar @@ -803,6 +803,9 @@ Buffers, windows and the argument list: win_gotoid() go to window with ID win_id2tabwin() get tab and window nr from window ID win_id2win() get window nr from window ID + getbufinfo() get a list with buffer information + gettabinfo() get a list with tab page information + getwininfo() get a list with window information Command line: *command-line-functions* getcmdline() get the current command line @@ -957,7 +960,10 @@ Jobs: *job-functions* Timers: *timer-functions* timer_start() create a timer + timer_pause() pause or unpause a timer timer_stop() stop a timer + timer_stopall() stop all timers + timer_info() get information about timers Various: *various-functions* mode() get current editing mode |