vscode 阅读 android以及kernel 源码

在Ubuntu系统中安装vscode

参考文档:

https://blog.csdn.net/m0_57368670/article/details/127184424

1, 下载vscode

https://code.visualstudio.com

2, 安装vscode

$ sudo dpkg -i code_1.78.1-1683194560_amd64.deb

3, 打开vscode

$ code

vscode 阅读 android以及kernel 源码

参考文档:

https://blog.csdn.net/lyndon_li/article/details/127955889
sudo apt install globa l

vscode安装 c/c++ gnu global插件
Ctrl + Shift + P 执行 Rebuild Gtags Database ,等待数分钟在vscode右下角显示Build tag files successfully,表示索引建立成功。同时在工作目录会生成三个文件,GRTAGS,GTAGS,GPATH,

通过 Ctrl + 鼠标左键 进行代码跳转

总结:

打开Visual Studio Code -> File -> Open Folder -> 选择android以及kernel源码目录或某个子目录打开 -> Ctrl + Shift + P 执行 Rebuild Gtags Database

vscode护眼色配置

打开Visual Studio Code -> File -> Preferences -> Settings -> 点击"Open Settings(JSON)"文本图标,添加如下护眼色配置。

bash 复制代码
{
    "editor.fontSize": 16,
    "workbench.iconTheme": null,
    "workbench.preferredLightColorTheme": "Visual Studio 2017 Dark - C++",
    "workbench.preferredHighContrastLightColorTheme": "Visual Studio 2017 Light - C++",
    "workbench.preferredHighContrastColorTheme": "Visual Studio 2017 Dark - C++",
    "workbench.colorTheme": "Atom One Light",
    "window.zoomLevel": 1,

    "workbench.colorCustomizations": {
        "[Atom One Light]": {
            "editor.background": "#C7EDCC",
            "sideBar.background": "#C7EDCC",
            "activityBar.background": "#C7EDCC", 
            },
        },

    "workbench.editor.limit.enabled": true,
    "workbench.editor.limit.value": 15,



}
相关推荐
zzzzzz31014 小时前
9K Star 炸裂开源!这个 C 语言写的代码知识图谱,把 Linux 内核索引压缩到了 3 分钟
linux·服务器·sql
XIAOHEZIcode15 小时前
Linux系统鼠标偏移常见原因以及修复方案
linux·运维·游戏
A小辣椒2 天前
TShark:Wireshark CLI 功能
linux
A小辣椒3 天前
TShark:基础知识
linux
AlfredZhao3 天前
OCI 明明分配了 200G 系统盘,为什么 df 只看到 30G?
linux·oci
AlfredZhao3 天前
vi 删除指定范围的行,不用再反复按 dd
linux·vi
用户9718356334664 天前
银河麒麟 KY10 申威(SW64) 安装 nginx-1.16.1-2.p01.ky10.sw_64.rpm 详细步骤
linux
猪脚踏浪4 天前
linux 拷贝文件或目录到指定的位置
linux
摇滚侠4 天前
Linux CentOS7 rpm 安装 MySQL 5.7
linux·运维·mysql
bush44 天前
嵌入式linux学习记录十四、术语
linux·嵌入式