博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《VSChromium Extension》文档学习
阅读量:2123 次
发布时间:2019-04-30

本文共 1136 字,大约阅读时间需要 3 分钟。

链接:

学习进度:ongoing


前言

VSChromium是VS的Extension,包含了一系列工具,可以编辑,导航,调试代码。简单来说,可以代替built-in "Find in Files" VS feature。在0.1second的时间内,可以搜索10w+ files。(看起来就是Visual Assist X的进化版)

VSChromiume最初是用于submit chromiume project code,随着插件的开发,更通用了,任何project 都OK

功能总结

  • Code Search,根据key word search all sln。也可以设置搜索的options,可以通过vs-chromium-project.txt,对搜索结果进行ignore。类似,gitign
  • VsChromium功能可以被打开 or 关闭。Tools |  Options
  • 格式化C++/C#代码
  • Chromium Coding Style检查
  • Attach to chrome

Getting started

Install

下载最新版


Code Search and Source Explorer

VsChromium has a built-in text search engine

Source Explorer

Source Explorer 集成在 vs built-in solution explorer and show the hierarchy of directories,当文件更新的时候,Source也会自动更新

(疑问)为啥感觉没快到哪去,感觉是我的问题?

Code Search

Code Search根据text或者regular expression进行代码搜索,Code Search的打开方式为:View | Other Windows | Code Search。支持Match Case(大小写),Math Whole Word,Use Regular Expressions,也可以限定路径

用正则表达式的场合比较少,理解basic function就可以了,就是个搜索栏  : )

Chromium Coding Style checker

以下是会被红色高亮check out 规则

  • 单行字符超过80个
  • 行尾空格
  • TAB instead of spcae characters
  • 无效的 else-if
  • 无效的 public

Navigate to Build Error

Tool | Package Manager Console继承cmd,同时可以显示报错链接

Attach to Chrome

附加到进程

转载地址:http://bkcrf.baihongyu.com/

你可能感兴趣的文章
Leetcode C++《热题 Hot 100-26》15.三数之和
查看>>
Leetcode C++《热题 Hot 100-27》17.电话号码的字母组合
查看>>
Leetcode C++《热题 Hot 100-28》19.删除链表的倒数第N个节点
查看>>
Leetcode C++《热题 Hot 100-29》22.括号生成
查看>>
Leetcode C++《热题 Hot 100-40》64.最小路径和
查看>>
Leetcode C++《热题 Hot 100-41》75.颜色分类
查看>>
Leetcode C++《热题 Hot 100-42》78.子集
查看>>
Leetcode C++《热题 Hot 100-43》94.二叉树的中序遍历
查看>>
Leetcode C++ 《第175场周赛-1 》5332.检查整数及其两倍数是否存在
查看>>
Leetcode C++ 《第175场周赛-2 》5333.制造字母异位词的最小步骤数
查看>>
Leetcode C++ 《第175场周赛-3》1348. 推文计数
查看>>
Leetcode C++《热题 Hot 100-44》102.二叉树的层次遍历
查看>>
Leetcode C++《热题 Hot 100-45》338.比特位计数
查看>>
读书摘要系列之《kubernetes权威指南·第四版》第一章:kubernetes入门
查看>>
Leetcode C++《热题 Hot 100-46》739.每日温度
查看>>
Leetcode C++《热题 Hot 100-47》236.二叉树的最近公共祖先
查看>>
Leetcode C++《热题 Hot 100-48》406.根据身高重建队列
查看>>
《kubernetes权威指南·第四版》第二章:kubernetes安装配置指南
查看>>
Leetcode C++《热题 Hot 100-49》399.除法求值
查看>>
Leetcode C++《热题 Hot 100-51》152. 乘积最大子序列
查看>>