Last active
December 16, 2025 18:34
-
-
Save chinmaygarde/20ad99ffd4d4654a2b5cf30d64b9a688 to your computer and use it in GitHub Desktop.
FlutterEngine.sublime-project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "build_systems": [ | |
| { | |
| "name": "Default", | |
| "shell_cmd": "et build -c host_debug_unopt_arm64 //flutter/impeller:impeller_unittests && ./impeller_unittests --playground_timeout_ms=10000 --gtest_filter=\"*CanDrawImage*/Vulkan\"", | |
| "working_dir": "${project_path}/out/host_debug_unopt_arm64", | |
| "file_regex": "(.*):([\\d]+):([\\d]+):? ?((?:error|fatal error|warning|note|Failure):? ?.*)", | |
| "shell": true, | |
| }, | |
| ], | |
| "folders": | |
| [ | |
| { | |
| "index_include_patterns": | |
| [ | |
| "*.h", | |
| "*.cc", | |
| "*.c", | |
| "*.cpp", | |
| "*.mm", | |
| ], | |
| "file_exclude_patterns": | |
| [ | |
| "._*" | |
| ], | |
| "folder_exclude_patterns": | |
| [ | |
| "out", | |
| "ios_tools", | |
| "buildtools", | |
| "fuchsia", | |
| "flutter/lib/web_ui", | |
| ], | |
| "follow_symlinks": false, | |
| "name": "Flutter Mac Engine", | |
| "path": ".", | |
| }, | |
| { | |
| "file_include_patterns": | |
| [ | |
| "compile_commands.json", | |
| "*.h", | |
| "*.cc", | |
| "*.rsp", | |
| "*.metal", | |
| "*.gles", | |
| "*.glsl", | |
| "*.vert.json", | |
| "*.frag.json", | |
| "*.epoxy.dart", | |
| "*.epoxy.dart.json", | |
| "*.epoxy.h.json", | |
| "*.epoxy.cc.json", | |
| ], | |
| "follow_symlinks": false, | |
| "name": "Generated", | |
| "path": "out", | |
| }, | |
| { | |
| "name": "Sublime User Packages", | |
| "path": "/Users/buzzy/Library/Application Support/Sublime Text/Packages/User", | |
| }, | |
| ], | |
| "settings": | |
| { | |
| "LSP": | |
| { | |
| "clangd": | |
| { | |
| "initializationOptions" : { | |
| "clangd.compile-commands-dir": "out/host_debug_unopt_arm64", | |
| "clangd.background-index": true, | |
| "clangd.header-insertion": "never", | |
| "clangd.clang-tidy": true, | |
| } | |
| }, | |
| }, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment