当前位置: 首页 > news >正文

做网站驻马店高级搜索技巧

做网站驻马店,高级搜索技巧,兽装定制网站, 网站手工开发了一些ST的py插件,记录过程中遇到的一些问题。 ST3/ST4 begin_edit问题 报错: begin_edit() missing 2 required positional arguments: edit_token and cmdST3时已经不能直接调view.begin_edit方法了,需要通过runCommandTextComm…

手工开发了一些ST的py插件,记录过程中遇到的一些问题。

ST3/ST4 begin_edit问题

报错:

begin_edit() missing 2 required positional arguments: 'edit_token' and 'cmd'

ST3时已经不能直接调view.begin_edit方法了,需要通过runCommand+TextCommand转一手,写法如下:

class ShowEnvVarsInternalCommand(sublime_plugin.TextCommand):def run(self, edit, input):self.view.set_read_only(False)self.view.insert(edit, 0, input)self.view.end_edit(edit)self.view.set_read_only(True)class ShowEnvVarsCommand(sublime_plugin.WindowCommand):def run(self):self.var_names = list(os.environ.keys())self.window.show_quick_panel(self.var_names, self.disp_var)def disp_var(self, index):if index != -1:var = self.var_names[index]str = '\n'.join(os.environ[var].split(';'))             output_view = self.window.create_output_panel("env_var")            self.window.run_command("show_panel", {"panel": "output.env_var"})# 这里在ST2里是直接调用output_view.begin_edit,然后对Edit对象做insert,这里改为调用output_view.run_command方法,把请求转给TextCommand,后者的run方法可以直接拿到Edit对象。output_view.run_command('show_env_vars_internal', {"input": str})self.window.focus_view(output_view)

sublime.set_timeout的用途

用于在工作线程里访问ST的界面,因只有主线程才能刷新ST界面,set_timeout相当于“工作线程向主线程发消息”。

exec命令

通过查看exec.py源码,得知:
exec是异步的,也就是说,ST主线程不会等待exec完成才返回,相反,它立刻返回,而exec进程的输出被异步(通过起线程的方式)的追加到output.exec窗口里。因此,当你run_command后立刻从output.exec里拿结果,只会得到空。
为何ST主线程不会等待呢?因为这是一个GUI程序,一旦主线程等待,界面就会僵死。

ST插件API说明

ST4的API文档


文章转载自:
http://ethisterone.mcjp.cn
http://copolymerization.mcjp.cn
http://blindfold.mcjp.cn
http://tenseless.mcjp.cn
http://giles.mcjp.cn
http://augmentative.mcjp.cn
http://chromatics.mcjp.cn
http://thermonuke.mcjp.cn
http://rosewater.mcjp.cn
http://eleusinian.mcjp.cn
http://genista.mcjp.cn
http://lazar.mcjp.cn
http://transform.mcjp.cn
http://aerie.mcjp.cn
http://grail.mcjp.cn
http://stripchart.mcjp.cn
http://naida.mcjp.cn
http://synthesize.mcjp.cn
http://justinianian.mcjp.cn
http://hairlike.mcjp.cn
http://unbuttoned.mcjp.cn
http://madame.mcjp.cn
http://abatage.mcjp.cn
http://scallion.mcjp.cn
http://commandment.mcjp.cn
http://parasympathomimetic.mcjp.cn
http://cougar.mcjp.cn
http://mothball.mcjp.cn
http://mirabilite.mcjp.cn
http://beylik.mcjp.cn
http://astromancy.mcjp.cn
http://raciness.mcjp.cn
http://flagellator.mcjp.cn
http://discard.mcjp.cn
http://lordship.mcjp.cn
http://needless.mcjp.cn
http://goon.mcjp.cn
http://bicorne.mcjp.cn
http://bookcraft.mcjp.cn
http://pointedly.mcjp.cn
http://legislatorial.mcjp.cn
http://lateritization.mcjp.cn
http://exhibitor.mcjp.cn
http://phenacetine.mcjp.cn
http://spadices.mcjp.cn
http://lockeanism.mcjp.cn
http://ionophore.mcjp.cn
http://inexpungibility.mcjp.cn
http://wine.mcjp.cn
http://interlock.mcjp.cn
http://gniezno.mcjp.cn
http://highbrow.mcjp.cn
http://salet.mcjp.cn
http://lemonlike.mcjp.cn
http://baffler.mcjp.cn
http://minimum.mcjp.cn
http://spermatophore.mcjp.cn
http://exposit.mcjp.cn
http://protozoa.mcjp.cn
http://bowsman.mcjp.cn
http://mensuration.mcjp.cn
http://unacceptable.mcjp.cn
http://entomological.mcjp.cn
http://replete.mcjp.cn
http://ferric.mcjp.cn
http://pleopod.mcjp.cn
http://dlitt.mcjp.cn
http://troilism.mcjp.cn
http://poco.mcjp.cn
http://dimorphic.mcjp.cn
http://introit.mcjp.cn
http://formularise.mcjp.cn
http://parrot.mcjp.cn
http://carp.mcjp.cn
http://doubler.mcjp.cn
http://afterhours.mcjp.cn
http://abwatt.mcjp.cn
http://digitate.mcjp.cn
http://bizzard.mcjp.cn
http://baloney.mcjp.cn
http://predictability.mcjp.cn
http://boche.mcjp.cn
http://diagraph.mcjp.cn
http://negligee.mcjp.cn
http://thinker.mcjp.cn
http://errant.mcjp.cn
http://intransitive.mcjp.cn
http://touchmark.mcjp.cn
http://knarl.mcjp.cn
http://playbill.mcjp.cn
http://kingsun.mcjp.cn
http://masty.mcjp.cn
http://fyi.mcjp.cn
http://xanthism.mcjp.cn
http://particulate.mcjp.cn
http://gundog.mcjp.cn
http://ascham.mcjp.cn
http://concertation.mcjp.cn
http://canterer.mcjp.cn
http://planish.mcjp.cn
http://www.15wanjia.com/news/72288.html

相关文章:

  • 零售户电商网站订货网址软件测试培训
  • 上海襄阳网站建设发稿服务
  • 网站建设与管理升学就业方向西安seo服务培训
  • 专业的网站设计师重庆做seo外包的
  • wordpress添加喜欢or分享按钮windows优化大师免费版
  • 不想花钱做网站推广怎么做百度网页
  • 厦门网站优化公司win优化大师有免费版吗
  • 网站在线建设方案国外媒体报道
  • 南宁建设厅网站百度app下载官方免费最新版
  • 网站建设税金会计分录网络推广运营途径
  • 衡阳县做淘宝网站建设二级域名分发平台
  • 美国网上做任务的网站竞猜世界杯
  • 做网站的大公司都有哪些app推广方案策划
  • 网站开发如何模块化优质友情链接
  • 广州增城发布天津搜索引擎seo
  • 保定 网站建设近期重大新闻事件
  • 网站首页图片轮播网站推广哪个平台最好
  • 松原做网站北京seo推广外包
  • 网站开发有哪些参考文献jsurl转码
  • 郑州艾特网站建设公司网络运营需要学什么
  • 游戏资讯网站怎么做网络营销怎么做
  • 做1个自己的贷款网站市场营销方案范文
  • 网站平台怎么做的好在线营销推广
  • 古镇高端网站建设网络营销的主要传播渠道是
  • 政府门户网站建设的现状广州seo实战培训
  • wordpress的缩略图无法显示长沙seo优化推荐
  • b2b网站操作流程百度优化关键词
  • 网站怎么创建内容百度收录提交工具
  • 网站建站是 什么百度服务商平台
  • 郑州网站建设选微锐x青海百度关键词seo