1

I'm looking for a plugin (or a way to create metadata for a plugin) that will allow me to do the following with Sublime Text 3 for the C programming language.

  1. Generate C source file from a template
  2. (Auto) generate C style function comments

For the plugin I am looking for something that handles autocompletion with argument hints (similar to the hover-box hints in VS indicating what the parameter is. I am aware that this may require some bit of coupling to the documentation of the function in a function block.

4

1 回答 1

0

为了他人的利益,这是我最终使用的解决方法和基本原理

  1. 对于 C 源文件生成,我最终使用了 eclipse CDT,因为它在模板下具有几乎开箱即用的功能。

  2. 对于评论生成,我还使用了绑定到热键的 eclipse CDT 模板。它有一定的限制(只有在函数范围内触发热键时才会自动填充函数名称和参数),但它也可以开箱即用。

于 2017-09-08T01:30:58.137 回答