代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
在VIM中使用GOOGLE进行搜索或者翻译
作者:
OSCHINA.NET
/ 发布于
2011/4/26
/
1089
一个在VIM中直接调用浏览器搜索或翻译当前光标下单词的一段代码。VIM必须内建PYTHON. 放入.vimrc 文件中即可
<div>python << EOM #coding = utf-8 def google_it(word): import re import webbrowser if not word or word.isspace(): print 'there is no word under the cursor' else: try: url = 'http://www.google.com/search?q='+word webbrowser.open(url) except: print 'cannot access google!' def google_translate_it(word): import re import webbrowser if not word or word.isspace(): print 'there is no word under the cursor!' else: try: url = 'http://translate.google.cn/#en|zh-CN|'+word+'%0A' webbrowser.open(url) except: print 'cannot access google!' EOM</div> <div></div> <div>function! Google() python << EOM #coding = utf-8 import vim py_word = vim.eval("expand(\"<cword>\")") print py_word google_it(py_word) EOM endfunction</div> <div>function! GoogleTranslate() python << EOM #coding = utf-8 import vim py_word = vim.eval("expand(\"<cword>\")") print py_word google_translate_it(py_word) EOM endfunction</div> <div>command GOOGLE :call Google() command GOOGLETRANSLATE :call GoogleTranslate()</div>
试试其它关键字
在VIM
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
OSCHINA.NET
贡献的其它代码
(
12
)
.
MySQL数据库每日自动备份的脚本
.
在VIM中使用GOOGLE进行搜索或者翻译
.
快速多线程ping
.
通过 ODBC 连接数据库并创建表
.
创建一个新的 ODBC 数据源
.
列举所有的 ODBC 驱动程序
.
获取 Windows 系统的版本
.
对存储过程表的列及值添加标记,方便修改
.
Socket 客户端获取服务器时间
.
Perl 解析 HTTP Header
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3