aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/tlib_vim/autoload/tlib/fixes.vim
blob: e9247dd6f3288590f3ea839e52d3a9a8a0874e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" @Author:      Tom Link (mailto:micathom AT gmail com?subject=[vim])
" @License:     GPL (see http://www.gnu.org/licenses/gpl.txt)
" @Last Change: 2013-02-22.
" @Revision:    3


function! tlib#fixes#Winpos() "{{{3
    if has('gui_win32')
        return 'winpos '. getwinposx() .' '. getwinposy()
    else
        return ''
    endif
endf