久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      vscode中ctrl+鼠標(biāo)左鍵不能跳轉(zhuǎn)

      vscode中ctrl+鼠標(biāo)左鍵不能跳轉(zhuǎn)

      問(wèn)題:

      使用CTRL+鼠標(biāo)左鍵無(wú)法跳轉(zhuǎn)到定義。

      解決方法:

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

      2、按快捷鍵Ctrl+P,之后點(diǎn)擊Edit configurations,打開(kāi)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" 就會(huì)造成無(wú)法跳轉(zhuǎn),最后只能改成:

      {     "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 }

      相關(guān)教程推薦:vscode教程

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