导语:
本文主要介绍了关于python vim中有哪些对象的相关知识,包括怎么用vim写python,以及python sublime这些编程知识,希望对大家有参考作用。
1、Tabpage对象(:h python-tabpage)
一个Tabpage对象对应vim的一个Tabpage。
2、Window对象(:h python-window)
一个Window对象对应vim的一个Window。
3、Buffer对象(:h python-buffer)
一个Buffer对象对应于vim的一个缓冲区,Buffer对象提供了一些属性和方法,可以方便的对缓冲区进行操作。
4、vim.current对象(:h python-current)
vim.current 对象提供了一些属性以便于访问“当前”vim 对象
5、实例
:py print b.name # write the buffer file name
:py b[0] = "hello!!!" # replace the top line
:py b[:] = None # delete the whole buffer
:py del b[:] # delete the whole buffer
:py b[0:0] = [ "a line" ] # add a line at the top
:py del b[2] # delete a line (the third)
:py b.append("bottom") # add a line at the bottom
:py n = len(b) # number of lines
:py (row,col) = b.mark('a') # named mark
:py r = b.range(1,5) # a sub-range of the buffer
:py b.vars["foo"] = "bar" # assign b:foo variable
:py b.options["ff"] = "dos" # set fileformat
:py del b.options["ar"] # same as :set autoread<
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中编程09/17
- ♥ python如何取余数和商?08/31
- ♥ python如何实现图像的比例缩放10/09
- ♥ 如何安装python3.612/30
- ♥ python中的逻辑行和物理行是什么?01/09
- ♥ defaultdict 在 python 中接收调用对象12/24
内容反馈