【说站】python vim模块的函数接口
2024-10-08
41
python vim模块的函数接口
1、vim.command(str)
执行vim中的命令str(ex-mode),返回值为None,例如:
:py vim.command("%s/\s\+$//g") :py vim.command("set shiftwidth=4") :py vim.command("normal! dd")
2、vim.eval(str)
求vim表达式str的值,返回结果类型为:
string: 如果vim表达式的值的类型是string或number
list:如果vim表达式的值的类型是一个vim list(:h list)
dictionary:如果vim表达式的值的类型是一个vim dictionary(:h dict)
:py sw = vim.eval("&shiftwidth") :py print vim.eval("expand('%:p')") :py print vim.eval("@a")
以上就是python vim模块函数接口的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1个月前赞一波!
相关文章
- 【说站】python列表如何传递到线程?
- 【说站】python局部作用域是什么
- 【说站】python中Queue如何通信
- 【说站】python WSGI规范是什么
- 【说站】python中进程池Pool的初始化
- 【说站】python Pool常用函数有哪些
- 【说站】python整数的进制转换
- 【说站】python如何使用send唤醒
- 【说站】python gevent的原理分析
- 【说站】java抽象类和接口的区别探究
- 【说站】python生成器创建的方法整理
- 【说站】本月编程语言排行:C语言稳居榜首,python持续上升
- 【说站】python密码生成器的使用
- 【说站】python模块如何传入参数
- 【说站】python模块的介绍和导入
- 【说站】招聘月:Python数据分析岗位迎来机遇
- 【说站】python调用函数的注意点
- 【说站】python中try-except-finally语句的使用
- 【说站】python raise语句的两种用法
- 【说站】python try-except捕获异常的方法
文章评论
评论问答