VScode - ubuntu - C/C++开发环境

安装VS Code

https://code.visualstudio.com/

sudo dpkg -i code_xxxx_amd64.deb

安装插件

vscode-icons 图标插件,资源管理器下各个文件夹的图标
compareit 比较插件,可以用于比较两个文件的差异
C/C++ The C/C++ extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging.
C/C++ Themes UI Themes for C/C++ extension
Better C++ Syntax The bleeding edge of the C++ syntax
C/C++ Snippets C/C++重用代码块
C/C++ Advanced Lint C/C++静态检测
Include AutoComplete 头文件智能补全
Path Intellisense 文件路径智能补全
ARM 支持 ARM 汇编语法高亮显示
DeviceTree 设备树语法插件
C/C++ GNU Global Provide Intellisense for C/C++ using GNU Global
C++ Intellisense C/C++ Intellisense with the help of GNU Global tags
CMake CMake langage support
CMake Tools Extended CMake support
Code Runner 代码运行,仅用于Demo,正式工程应用CMake
Doxygen Documentation Generator 自动生成Doxygen格式注释
Remote - SSH Open any folder on a remote machine using SSH and take advantage of VS Code's full feature set.
Remote - WSL Open any folder in the Windows Subsystem for Linux (WSL) and take advantage of Visual Studio Code's full feature set.
Remote - Containers Open any folder or repository inside a Docker container and take advantage of Visual Studio Code's full feature set.
highlight-words 高亮选中的单词或表达式,需手动设置快捷键,比如设置成“Ctrl + F8”
Bracket Pair Colorizer A customizable extension for colorizing matching brackets
TODO Highlight Highlight TODO, FIXME and other annotations within your code.
Todo Tree Show TODO, FIXME, etc. comment tags in a tree view
Bookmarks Mark lines and jump to them

GNU Global

sudo apt install global

# 在工程目录执行以便建立索引
gtags -v

# 增量更新索引
gtags -vi

# 查找函数或变量的定义和申明
global -x <variable name or function name>

# 查找函数或变量的引用
global -xr <variable name or function name>

生成三个文,GTAGS是定义的数据库,GRTAGS是引用的数据库,GPATH是路径的数据库

右键即可使用Go to Definition、Peak Definition、Find All References

Lint

sudo apt install clang
sudo apt install cppcheck

违反语言规则或则检查规则,将在违规处显示告警信息,能显著减少编译时间,提高效率。

CMake

sudo apt install cmake

# 创建CMake工程
CMake:Quick Start

# 常用功能
CMake:Configure
CMake:Build
CMake:Clean
CMake:Run
CMake:Debug
CMake:Install

C/C++

如下配置用于研究linux kernel,其他工程也类似

Ctrl + Shift + P >> “C/C++:Edit configurations…(json)”

自动生成“.vscode/c_cpp_properties.json”,在“includePath”中增加头文件路径

{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**",
                "${workspaceFolder}/include/**",
                "${workspaceFolder}/include/linux/**",
                "${workspaceFolder}/arch/arm64/**",
                "${workspaceFolder}/arch/arm64/include/**"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/gcc",
            "cStandard": "gnu17",
            "cppStandard": "gnu++14",
            "intelliSenseMode": "linux-gcc-x64"
        }
    ],
    "version": 4
}

Ctrl + Shift + P >> Preferences: Open Workspace Settings (JSON)

自动生成“.vscode/settings.json”

{
    "search.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.DS_Store": true,
        "**/drivers": true,
        "**/sound": true,
        "**/tools": true,
        "**/arch/alpha": true,
        "**/arch/arc": true,
        "**/arch/c6x": true,
        "**/arch/h8300": true,
        "**/arch/hexagon": true,
        "**/arch/ia64": true,
        "**/arch/m32r": true,
        "**/arch/m68k": true,
        "**/arch/microblaze": true,
        "**/arch/mn10300": true,
        "**/arch/nds32": true,
        "**/arch/nios2": true,
        "**/arch/parisc": true,
        "**/arch/powerpc": true,
        "**/arch/s390": true,
        "**/arch/sparc": true,
        "**/arch/score": true,
        "**/arch/sh": true,
        "**/arch/um": true,
        "**/arch/unicore32": true,
        "**/arch/xtensa": true
    },

    // Configure glob patterns for excluding files and folders.
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.DS_Store": true,
        "**/drivers": true,
        "**/sound": true,
        "**/tools": true,
        "**/arch/alpha": true,
        "**/arch/arc": true,
        "**/arch/c6x": true,
        "**/arch/h8300": true,
        "**/arch/hexagon": true,
        "**/arch/ia64": true,
        "**/arch/m32r": true,
        "**/arch/m68k": true,
        "**/arch/microblaze": true,
        "**/arch/mn10300": true,
        "**/arch/nds32": true,
        "**/arch/nios2": true,
        "**/arch/parisc": true,
        "**/arch/powerpc": true,
        "**/arch/s390": true,
        "**/arch/sparc": true,
        "**/arch/score": true,
        "**/arch/sh": true,
        "**/arch/um": true,
        "**/arch/unicore32": true,
        "**/arch/xtensa": true
    },
    "files.associations": {
        "rmap.h": "c",
        "bootmem.h": "c",
        "processor.h": "c",
        "highmem.h": "c",
        "memcontrol.h": "c",
        "page-flags.h": "c"
    }
}

设置垂直标尺

打开"settings",所有“editor.rulers”,点击“settings.json”

image-20210922230743603.png

填入120,表示120个字符。下图右边为垂直标尺。

image-20210922230825154.png

格式化文件

可自定义代码格式,并将名为“.clang-format”的格式文件放到VS Code工程根目录。

sudo apt install clang-format
# 生成llvm风格的格式
clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4}" -dump-config > .clang-format
# 生成google风格的格式
clang-format -style="{BasedOnStyle: google, IndentWidth: 4}" -dump-config > .clang-format

自定义格式,参考 https://zhuanlan.zhihu.com/p/356143396

快捷键:ctrl + shift + I

或则右键并选择Format Document

重命名

选择需重名的Symbol,右键并选择“Rename Symbol”,输入New Symbol

按“Shift+Enter”,然后选择需要修改的代码,并按“Shift+Enter“

image-20211010160827118.png

Git

Git History View git log, file history, compare branches or commits
GitLens — Git supercharged Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more
Git Graph View a Git Graph of your repository, and perform Git actions from the graph.

在“Source Control”进行操作

Remote - SSH

配置和使用请参考:

https://code.visualstudio.com/docs/remote/ssh#_getting-started

公司的办公环境一般是window,开发环境为ubuntu。通过此插件连接到ubuntu进行开发,大部分功能是在ubuntu上执行,PC仅显示和编辑代码。

备注: 连接到Remote Server,须选择本地的插件安装到Remote server

代理

由于数据安全,大公司会屏蔽部分外网功能并提供代理服务。

打开“settings”,搜索“proxy”,在“Http:Proxy”中输入代理网址

image-20210922225826558.png

参考

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容