Skip to content

Instantly share code, notes, and snippets.

@chinmaygarde
Last active December 17, 2021 00:16
Show Gist options
  • Save chinmaygarde/20ad99ffd4d4654a2b5cf30d64b9a688 to your computer and use it in GitHub Desktop.
Save chinmaygarde/20ad99ffd4d4654a2b5cf30d64b9a688 to your computer and use it in GitHub Desktop.
FlutterEngine.sublime-project
{
"build_systems": [
{
"name": "GN Build All",
"shell_cmd": "ninja -j999",
"working_dir": "${project_path}/out/host_debug_unopt",
"file_regex": "(.*):([\\d]+):([\\d]+)?:? ?((?:error|warning|note): ?.*)",
"shell": true,
}
],
"folders":
[
{
"index_include_patterns":
[
"*.h",
"*.cc",
"*.c",
"*.cpp",
"*.mm",
],
"file_exclude_patterns":
[
"._*"
],
"folder_exclude_patterns":
[
"out",
"ios_tools",
"buildtools",
"fuchsia",
"third_party/colorama",
"third_party/expat",
"third_party/fontconfig",
"third_party/gyp",
"third_party/ocmock",
"third_party/root_certificates",
"third_party/pkg",
"third_party/wuffs",
"third_party/zlib",
],
"follow_symlinks": false,
"name": "Flutter Mac Engine",
"path": ".",
},
{
"file_include_patterns":
[
"compile_commands.json",
"*.h"
],
"follow_symlinks": false,
"name": "Generated",
"path": "out",
},
{
"name": "Sublime User Packages",
"path": "/Users/chinmaygarde/Library/Application Support/Sublime Text/Packages",
},
],
"settings":
{
"LSP":
{
"clangd":
{
"enabled": true,
"command": [
"/Users/chinmaygarde/VersionControlled/engine/src/buildtools/mac-x64/clang/bin/clangd",
"--compile-commands-dir=/Users/chinmaygarde/VersionControlled/engine/src/out/host_debug_unopt",
"--clang-tidy",
"-header-insertion=never",
"-j=36",
"--background-index=true"
],
}
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment