使用Python編寫(xiě)vim插件的簡(jiǎn)單示例
Vim 插件是一個(gè) .vim 的腳本文件,定義了函數(shù)、映射、語(yǔ)法規(guī)則和命令,可用于操作窗口、緩沖以及行。一般一個(gè)插件包含了命令定義和事件鉤子。當(dāng)使用 Python 編寫(xiě) vim 插件時(shí),函數(shù)外面是使用 VimL 編寫(xiě),盡管 VimL 學(xué)起來(lái)很快,但 Python 更加靈活,例如可以用 urllib/httplib/simplejson 來(lái)訪問(wèn)某些 Web 服務(wù),這也是為什么很多需要訪問(wèn) Web 服務(wù)的插件都是使用 VimL + Python 編寫(xiě)的原因。
在開(kāi)始編寫(xiě)插件之前,你需要確認(rèn) Vim 支持 Python,通過(guò)以下命令來(lái)判別:
接下來(lái)我們通過(guò)一個(gè)簡(jiǎn)單的例子來(lái)學(xué)習(xí)用 Python 編寫(xiě) Vim 插件,該插件用來(lái)獲取 Reddit 首頁(yè)信息并顯示在當(dāng)前緩沖區(qū)上。
首先在 Vim 新建 vimmit.vim 文件,我們首先需要判斷是否支持 Python,如果不支持給出提示信息:
if !has('python')
echo "Error: Required vim compiled with +python"
finish
endif
上面這段代碼就是用 VimL 編寫(xiě)的,它將檢查 Vim 是否支持 Python。
下面是用 Python 編寫(xiě)的 Reddit() 主函數(shù):
" Vim comments start with a double quote.
" Function definition is VimL. We can mix VimL and Python in
" function definition.
function! Reddit()
" We start the python code like the next line.
python << EOF
# the vim module contains everything we need to interface with vim from
# python. We need urllib2 for the web service consumer.
import vim, urllib2
# we need json for parsing the response
import json
# we define a timeout that we'll use in the API call. We don't want
# users to wait much.
TIMEOUT = 20
URL = "http://reddit.com/.json"
try:
# Get the posts and parse the json response
response = urllib2.urlopen(URL, None, TIMEOUT).read()
json_response = json.loads(response)
posts = json_response.get("data", "").get("children", "")
# vim.current.buffer is the current buffer. It's list-like object.
# each line is an item in the list. We can loop through them delete
# them, alter them etc.
# Here we delete all lines in the current buffer
del vim.current.buffer[:]
# Here we append some lines above. Aesthetics.
vim.current.buffer[0] = 80*"-"
for post in posts:
# In the next few lines, we get the post details
post_data = post.get("data", {})
up = post_data.get("ups", 0)
down = post_data.get("downs", 0)
title = post_data.get("title", "NO TITLE").encode("utf-8")
score = post_data.get("score", 0)
permalink = post_data.get("permalink").encode("utf-8")
url = post_data.get("url").encode("utf-8")
comments = post_data.get("num_comments")
# And here we append line by line to the buffer.
# First the upvotes
vim.current.buffer.append("↑ %s"%up)
# Then the title and the url
vim.current.buffer.append(" %s [%s]"%(title, url,))
# Then the downvotes and number of comments
vim.current.buffer.append("↓ %s | comments: %s [%s]"%(down, comments, permalink,))
# And last we append some "-" for visual appeal.
vim.current.buffer.append(80*"-")
except Exception, e:
print e
EOF
" Here the python code is closed. We can continue writing VimL or python again.
endfunction
使用如下命令保存文件
然后調(diào)用該插件:
這個(gè)命令用起來(lái)不那么方便,因此我們?cè)俣x一個(gè)命令:
我們定義了命令:Reddit來(lái)調(diào)用這個(gè)函數(shù)。-nargs 參數(shù)聲明命令行中有多少個(gè)參數(shù)。
關(guān)于函數(shù)參數(shù)的問(wèn)題:
問(wèn):如何訪問(wèn)函數(shù)中的參數(shù)?
function! SomeName(arg1, arg2, arg3)
" Get the first argument by name in VimL
let firstarg=a:arg1
" Get the second argument by position in Viml
let secondarg=a:1
" Get the arguments in python
python << EOF
import vim
first_argument = vim.eval("a:arg1") #or vim.eval("a:0")
second_argument = vim.eval("a:arg2") #or vim.eval("a:1")
你可以使用 ... 來(lái)處理可變個(gè)數(shù)參數(shù)來(lái)替換特定的參數(shù)名,可通過(guò)位置或者命名參數(shù)來(lái)訪問(wèn),如:(arg1, arg2, ...)
問(wèn):如何在 Python 中調(diào)用 Vim 命令?
問(wèn):如何定義全局變量,并在 VimL 和 Python 中訪問(wèn)?
全局變量使用形如 g:. 的前綴,定義全局變量前應(yīng)該檢查該變量是否已定義:
if !exists("g:reddit_apicall_timeout")
let g:reddit_apicall_timeout=40
endif
然后你通過(guò)下面代碼在 Python 中訪問(wèn)這個(gè)變量:
TIMEOUT = vim.eval("g:reddit_apicall_timeout")
可通過(guò)下面的方法來(lái)對(duì)全局變量進(jìn)行重新賦值:
let g:reddit_apicall_timeout=60
更多關(guān)于使用 Python 編寫(xiě) Vim 插件的說(shuō)明請(qǐng)看官方文檔。
備注:
一旦你用過(guò)VimL,就會(huì)發(fā)現(xiàn)它挺簡(jiǎn)單的,你用python寫(xiě)的代碼也可以用它來(lái)實(shí)現(xiàn)。詳細(xì)請(qǐng)參考vim python模塊文檔,這是一份重要的參考資料。
除了上述文檔,你也可以在IBM developerWorks網(wǎng)站找到一些有用的資料。
- python與sqlite3實(shí)現(xiàn)解密chrome cookie實(shí)例代碼
- python導(dǎo)出chrome書(shū)簽到markdown文件的實(shí)例代碼
- python3實(shí)現(xiàn)讀取chrome瀏覽器cookie
- 使用python開(kāi)發(fā)vim插件及心得分享
- 使用Python的Flask框架表單插件Flask-WTF實(shí)現(xiàn)Web登錄驗(yàn)證
- python實(shí)現(xiàn)sublime3的less編譯插件示例
- 詳解如何使用Python編寫(xiě)vim插件
- 用python編寫(xiě)第一個(gè)IDA插件的實(shí)例
- 基于Python開(kāi)發(fā)chrome插件的方法分析
相關(guān)文章
關(guān)于Python字典(Dictionary)操作詳解
這篇文章主要介紹了關(guān)于Python字典(Dictionary)操作詳解,Python字典是另一種可變?nèi)萜髂P?,且可存?chǔ)任意類(lèi)型對(duì)象,如字符串、數(shù)字、元組等其他容器模型,需要的朋友可以參考下2023-04-04
Python 使用 attrs 和 cattrs 實(shí)現(xiàn)面向?qū)ο缶幊痰膶?shí)踐
這篇文章主要介紹了Python 使用 attrs 和 cattrs 實(shí)現(xiàn)面向?qū)ο缶幊痰膶?shí)踐,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-06-06
Python隨機(jī)生成手機(jī)號(hào)、數(shù)字的方法詳解
這篇文章主要介紹了Python隨機(jī)生成手機(jī)號(hào)、數(shù)字的方法,結(jié)合完整實(shí)例形式分析了Python編程生成隨機(jī)手機(jī)號(hào)與數(shù)字的實(shí)現(xiàn)方法及相關(guān)函數(shù)用法,需要的朋友可以參考下2017-07-07
Python+django實(shí)現(xiàn)簡(jiǎn)單的文件上傳
這篇文章主要為大家詳細(xì)介紹了Python+django實(shí)現(xiàn)簡(jiǎn)單的文件上傳的相關(guān)代碼,感興趣的小伙伴們可以參考一下2016-08-08
python opencv 找出圖像中的最大輪廓并填充(生成mask)
這篇文章主要介紹了python opencv 找出圖像中的最大輪廓并填充(生成mask),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-03-03
python pandas消除空值和空格以及 Nan數(shù)據(jù)替換方法
今天小編就為大家分享一篇python pandas消除空值和空格以及 Nan數(shù)據(jù)替換方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2018-10-10

