欧美亚洲中文,在线国自产视频,欧洲一区在线观看视频,亚洲综合中文字幕在线观看

      1. <dfn id="rfwes"></dfn>
          <object id="rfwes"></object>
        1. 站長資訊網(wǎng)
          最全最豐富的資訊網(wǎng)站

          vscode中ctrl+鼠標左鍵不能跳轉

          vscode中ctrl+鼠標左鍵不能跳轉

          問題:

          使用CTRL+鼠標左鍵無法跳轉到定義。

          解決方法:

          1、打開VsCode: 文件 -> 將工作區(qū)另存為,,將文件夾添加到工作區(qū)

          2、按快捷鍵Ctrl+P,之后點擊Edit configurations,打開c_cpp_properties.json文件,檢查 "includePath" 字段。。

          如:

          {     "configurations": [         {             "name": "Win32",             "includePath": [                 "${workspaceFolder}/**",                 "C:/Keil_v5/ARM/ARMCC/include"             ],             "defines": [                 "_DEBUG",                 "UNICODE",                 "_UNICODE"             ],             "compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",             "cStandard": "c11",             "cppStandard": "c++17",             "intelliSenseMode": "clang-x64"         }     ],     "version": 4 }

          我這邊如果添加了其它路徑 "C:/Keil_v5/ARM/ARMCC/include" 就會造成無法跳轉,最后只能改成:

          {     "configurations": [         {             "name": "Win32",             "includePath": [                 "${workspaceFolder}/**"             ],             "defines": [                 "_DEBUG",                 "UNICODE",                 "_UNICODE"             ],             "compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",             "cStandard": "c11",             "cppStandard": "c++17",             "intelliSenseMode": "clang-x64"         }     ],     "version": 4 }

          相關教程推薦:vscode教程

          贊(0)
          分享到: 更多 (0)
          網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號