从Visual Studio或VS Code中的注释摘要中跳过特定行的功能或扩展

时间:2019-05-13 06:27:27

标签: visual-studio visual-studio-code comments

在处理不同的大型.NET和Angular项目时,我有时看到CSS或JS代码在单个文件中变得冗长。那时我们必须滚动很多时间才能找到要修改的代码。我们通常会提供注释,以区分CSS或JS部分,如下所示。

getStudentList (studentList:}[]) {

    if (studentList.length < 1) {
      Promise.resolve()
    }
    let promises = []
    for (const student of StudentList) {
      if (!student.name) {
        Promise.resolve()
      }
      var url = `${API_URL}/${student.name}/`

      promises.push(Axios.get(url}))
    }

    return Axios.all(promises)
      .then(Axios.spread((...args) => {
        // customise the response here
        return args
          .map(response => response.data)
          .map(data => {
            //do something with data
            return data
          })
      }))

,但是仍然很难找到评论并对特定部分做出反应。

我有一个简单的部分,是否可以从注释摘要中到达Visual Studio的CSS或JS或VS Code中的特定行。

例如

/************************************************************/
/* Update By Contactor 1 :  30-4-2019 : New Style for Profile*/
/************************************************************/
body {
    font-size: 16px;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
}  
  

就像单击任何上面的注释一样,可以滚动到特定部分。一世   了解内置功能中的 Ctrl + G 可以跳转到特定行,   但为此,我需要知道行号很难   跟踪大文件

1 个答案:

答案 0 :(得分:1)

您需要在代码段之前有一个唯一的注释行,例如

/* <Style for Profile> */

然后,您可以从评论摘要中搜索它,或使用我的Favorite Documents VS扩展名将这些行添加到收藏夹。