diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-12 19:00:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-12 19:00:41 +0200 |
commit | 6d21645f463d6b6f73cf8b9baf9afe6675abf189 (patch) | |
tree | a6cf551d6b649cfe69f0cde0f0fe234538eee5c2 /src/proto/window.pro | |
parent | 971db4679940fd2f06733e8a1513215f9e1943a4 (diff) | |
download | vim-git-6d21645f463d6b6f73cf8b9baf9afe6675abf189.tar.gz |
updated for version 7.3.938v7.3.938
Problem: Python: not easy to get to window number.
Solution: Add vim.window.number. (ZyX)
Diffstat (limited to 'src/proto/window.pro')
-rw-r--r-- | src/proto/window.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/window.pro b/src/proto/window.pro index 0a7448927..a77da59c2 100644 --- a/src/proto/window.pro +++ b/src/proto/window.pro @@ -74,4 +74,5 @@ int match_add __ARGS((win_T *wp, char_u *grp, char_u *pat, int prio, int id)); int match_delete __ARGS((win_T *wp, int id, int perr)); void clear_matches __ARGS((win_T *wp)); matchitem_T *get_match __ARGS((win_T *wp, int id)); +int get_win_number __ARGS((win_T *wp)); /* vim: set ft=c : */ |