pythonvim中有哪些對象
1、Tabpage對象(:hpython-tabpage)
一個Tabpage對象對應vim的一個Tabpage。
2、Window對象(:hpython-window)
一個Window對象對應vim的一個Window。
3、Buffer對象(:hpython-buffer)
一個Buffer對象對應vim的一個buffer,Buffer對象提供了一些屬性和方法,可以很方便操作buffer。
4、vim.current對象(:hpython-current)
vim.current對象提供了一些屬性,可以方便的訪問“當前”的vim對象
5、實例
:pyprintb.name#writethebufferfilename
:pyb[0]="hello!!!"#replacethetopline
:pyb[:]=None#deletethewholebuffer
:pydelb[:]#deletethewholebuffer
:pyb[0:0]=["aline"]#addalineatthetop
:pydelb[2]#deletealine(thethird)
:pyb.append("bottom")#addalineatthebottom
:pyn=len(b)#numberoflines
:py(row,col)=b.mark('a')#namedmark
:pyr=b.range(1,5)#asub-rangeofthebuffer
:pyb.vars["foo"]="bar"#assignb:foovariable
:pyb.options["ff"]="dos"#setfileformat
:pydelb.options["ar"]#sameas:setautoread<
以上就是pythonvim中提供的對象介紹,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。