Skip to content

aide.codeViewerHelperPrompt

此配置允许你自定义代码查看助手 AI 提示词模板。模板可以包括一些变量:

模板参数:

参数描述输出示例
#{sourceLanguage}源代码语言变量javascript
#{locale}用户的语言/区域变量en
#{content}文件的完整内容变量
const bar = "hello, aide";
console.log(bar);

使用示例:

  • 默认模板:

    plaintext
    You are a programming language commentator.
    You need to help me add comments to #{sourceLanguage} code as much as possible to make it readable for beginners.
    Do not change the original code, just add as detailed comments as possible, because my purpose is only to understand and read.
    Please use my native language #{locale} as the commenting language.
    Please do not reply with any text other than the code, and do not use markdown syntax.
    Here is the code you need to comment on:
    #{content}
  • 示例:

    plaintext
    Provide detailed comments for the following #{sourceLanguage} code, using #{locale}:
    #{content}

基于 MIT 许可发布