网络

教育改变生活

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1937|回复: 0
打印 上一主题 下一主题

[其他] 插件界的瑞士军刀,vs code已经无所不能!

[复制链接]

271

主题

284

帖子

1243

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1243

最佳新人活跃会员热心会员突出贡献优秀版主

跳转到指定楼层
楼主
发表于 2020-6-22 17:14:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
powertools可以称得上插件界的瑞士军刀。
相对于VS Code中大多数插件的出现为了解决某一项弊端和不足,powertools则聚合了很多强大且实用的功能,能够增强VS Code的功能,并提升VS Code的使用体验。
powertools就如同之前使用iOS系统时使用过的一款软件Workflow,它相对于大多数插件功能更加丰富,但是门槛也更高一些。
也就是说,想要最大发挥这款插件的价值,仅凭默认的配置是不行的,还需要结合脚本使用。换句话说,需要自己会用js开发一些脚本,如同开发一款简易版的vs code插件,来实现对应的功能。
下面,就来看介绍一下这款插件的基本使用和优点吧!
安装
我相信,对于使用过VS Code的同学来说,安装插件是一件再容易不过的事情。
安装插件的方法主要有两种:
方法1:手动安装
点击左侧的活动栏上的扩展图标,然后搜索powertools,点击安装即可。
方法2:命令安装
使用快捷键Ctrl+P,输入命令ext install vscode-powertools,点击Enter键就可以安装插件。
如果上述两种方式走不通,也可以访问访问网页端插件市场[1],搜索对应的插件安装即可。
powertools
既然能够被称为瑞士军刀,那么它的功能自然就会非常丰富。
这款插件的功能大体可以分为如下几类:
  • 应用
  • 按钮
  • 命令
  • 事件
  • 工具

下面就分别来介绍一下。
应用
这里所说的应用是基于Node.js的脚本,可通过Web视图运行,并且还可以与Visual Studio Code实例进行交互。
创建应用只需要如下3步:
  • 点击按键F1或者Ctrl+Shift+P
  • 选择Power Tools: Apps
  • 选择Create App ...

输入对应应用的名称就完成了一款应用的创建,然后再执行前面的1~2步,第3步选择Open App ...就可以打开初始化的应用。




这对于很多使用Vue开发前端的同学能够提供很大便利。
按钮
在开发过程中,会有很多重复性的动作,例如,执行某个Python脚本、运行某个shell脚本。我们没有必要再去打开终端进入对应的工程目录,执行对应的任务或者shell脚本,通过添加1个vs code快捷按钮就可以实现一项繁琐且频繁用到的功能。
使用按钮功能,需要配置一下vs code的配置文件settings.json,
  1. <pre style="padding: 0.88889em; font-size: 0.9em; word-break: normal; overflow-wrap: normal; overflow: auto; background: rgb(246, 246, 246); border-radius: 4px; color: rgb(26, 26, 26);"><code class="language-text" style="border-radius: 0px; font-family: Menlo, Monaco, Consolas, &quot;Andale Mono&quot;, &quot;lucida console&quot;, &quot;Courier New&quot;, monospace; font-size: inherit; background-color: inherit;">{
  2.     "ego.power-tools": {
  3.         "buttons": [
  4.             {
  5.                 "text": "Click me!",
  6.                 "tooltip": "You run an awesome script by clicking that button!",
  7.                 "action": {
  8.                     "type": "script",
  9.                     "script": "my_button.js"
  10.                 }
  11.             }
  12.         ]
  13.     }
  14. }</code></pre>
复制代码

在上述配置中可以看出,这个按钮名称为Click me!,它执行了一个脚本my_button.js,然后来看一下这个js脚本的内容,
  1. <pre style="padding: 0.88889em; font-size: 0.9em; word-break: normal; overflow-wrap: normal; overflow: auto; background: rgb(246, 246, 246); border-radius: 4px; color: rgb(26, 26, 26);"><code class="language-text" style="border-radius: 0px; font-family: Menlo, Monaco, Consolas, &quot;Andale Mono&quot;, &quot;lucida console&quot;, &quot;Courier New&quot;, monospace; font-size: inherit; background-color: inherit;">exports.execute = async (args) => {
  2.     // args => https://egodigital.github.io/vscode-powertools/api/interfaces/_contracts_.buttonactionscriptarguments.html

  3.     // s. https://code.visualstudio.com/api/references/vscode-api
  4.     const vscode = args.require('vscode');

  5.     vscode.window.showInformationMessage(
  6.         'Hey, you clicked me!'
  7.     );
  8. };</code></pre>
复制代码

这个脚本的功能就是弹出一个消息框,下面来看一下效果。




命令
为了增强VS Code的功能,可以自定义一个命令,这样的话就可以在VS Code任何位置都可以调用。
和按钮一样,需要首先配置一下settings.json,
  1. <pre style="padding: 0.88889em; font-size: 0.9em; word-break: normal; overflow-wrap: normal; overflow: auto; background: rgb(246, 246, 246); border-radius: 4px; color: rgb(26, 26, 26);"><code class="language-text" style="border-radius: 0px; font-family: Menlo, Monaco, Consolas, &quot;Andale Mono&quot;, &quot;lucida console&quot;, &quot;Courier New&quot;, monospace; font-size: inherit; background-color: inherit;">{
  2.     "ego.power-tools": {
  3.         "commands": {
  4.             "myCommand": {
  5.                 "script": "my_command.js",
  6.                 "button": {
  7.                     "text": "Click here to start the command."
  8.                 }
  9.             }
  10.         }
  11.     }
  12. }</code></pre>
复制代码

下面来看一下效果,




详细的函数列表可以使用命令$help查看,也可以访问链接[2]了解一下。
事件
我觉得这是powertools这些功能中较为实用的一项,通过配置powertools,可以对我们在vs code中的一系列事件作出相应的反应。例如,当文件修改或者删除时能够提示到开发人员。
下面来看一下例子,
  1. <pre style="padding: 0.88889em; font-size: 0.9em; word-break: normal; overflow-wrap: normal; overflow: auto; background: rgb(246, 246, 246); border-radius: 4px; color: rgb(26, 26, 26);"><code class="language-text" style="border-radius: 0px; font-family: Menlo, Monaco, Consolas, &quot;Andale Mono&quot;, &quot;lucida console&quot;, &quot;Courier New&quot;, monospace; font-size: inherit; background-color: inherit;">{
  2.     "ego.power-tools": {
  3.         "events": [
  4.             {
  5.                 "type": "file.changed",
  6.                 "files": [ "**/*.txt" ],
  7.                 "exclude": [ "/test2.txt" ],
  8.                 "action": {
  9.                     "script": "my_event.js",
  10.                     "type": "script"
  11.                 }
  12.             }
  13.         ]
  14.     }
  15. }</code></pre>
复制代码
然后是脚本my_event.js
  1. <pre style="padding: 0.88889em; font-size: 0.9em; word-break: normal; overflow-wrap: normal; overflow: auto; background: rgb(246, 246, 246); border-radius: 4px; color: rgb(26, 26, 26);"><code class="language-text" style="border-radius: 0px; font-family: Menlo, Monaco, Consolas, &quot;Andale Mono&quot;, &quot;lucida console&quot;, &quot;Courier New&quot;, monospace; font-size: inherit; background-color: inherit;">exports.execute = async (args) => {
  2.     // args => https://egodigital.github.io/vscode-powertools/api/interfaces/_contracts_.filechangeeventactionscriptarguments.html

  3.     const path = require('path');

  4.     // s. https://code.visualstudio.com/api/references/vscode-api
  5.     const vscode = args.require('vscode');

  6.     vscode.window.showInformationMessage(
  7.         `The following file has changed: ${
  8.             path.relative(
  9.                 __dirname + '/..',
  10.                 args.file.fsPath
  11.             )
  12.          }`
  13.     );
  14. };</code></pre>
复制代码

exports.execute = async (args) => {    // args => https://egodigital.github.io/vsc ... criptarguments.html​    const path = require('path');​    // s. https://code.visualstudio.com/api/references/vscode-api    const vscode = args.require('vscode');​    vscode.window.showInformationMessage(        `The following file has changed: ${             path.relative(                __dirname + '/..',                args.file.fsPath            )         }`    ); };
这样,当文件修改时,就会得到相应的提示,下面看一下演示效果,


工具
重头戏来了!
前面提到的那些功能还是存在一定的门槛,对于喜欢尝试和挑战的同学是不错的功能。但是,对于仅仅想体验它功能的同学却显得枯燥乏味。
既然,powertools能够称得上插件领域的瑞士军刀,那么它当然不能仅包含前面这些功能。
powertools内置了很多丰富而且实用的函数和模块,这些函数的使用方式分为如下几个步骤:
  • 点击按键F1或者Ctrl+Shift+P
  • 选择Power Tools: Tools
  • 选择Code Execution ...

然后就可以输入对应的函数即可。
powertools支持哪些函数?
执行上述1~3步,然后输入$help,就可以列出powertools支持的函数列表。
因为,powertools支持的函数和模块较多,无法一一介绍,所以就挑3个介绍一下。
计算器
执行前面1~3步,输入需要计算的数学公式就可以弹出计算结果,


Base64编码
Base64是网络上最常见的用于传输8Bit字节码的编码方式之一,在数据的加解密中经常会用到。在powertools中能够轻松的对字符串进行Base64编码。
示例:
$base64("mkloubert@ssword123!")


搜索表情
输入对应的关键字,powertools就可以返回相关emojis表情列表。
示例:
$emojis("heart")


结语
除了本文介绍的应用、按钮、命令、事件、工具这些功能,powertools还可以用于执行定时作业、脚本、启动、用于定义动态设置的占位符,感兴趣的同学可以摸索尝试一下这些功能。


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

WEB前端

QQ|手机版|小黑屋|金桨网|助学堂  咨询请联系站长。

GMT+8, 2024-11-13 14:29 , Processed in 0.034800 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表