常见的编码工具

基于语法的

  • syntax high lighting:语法高亮工具。不同的语法部分,不同的代码颜色
  • code formatting:代码格式化工具。

基于语义的内容分析

  • intellisense:智能感知工具。包括自动补全、代码导航(选择)、符号识别。Edit your code with auto-completion, code navigation, syntax checking
  • linting:代码审查工具。对代码中存在的warn、info、error进行分析,代码分析工具
  • snippets:代码片段工具。代码片段已检查如。
  • refactoring:代码重构工具。包括转到定义、转到声明、转到实现、转到引用(转到)。Restructure your Python code with variable extraction, method extraction and import sorting

代码运行过程中的问题

  • debuging:代码调试工具。
  • testing:单元测试工具