commit 4cf5f772a93f59577f533de79390bd19e855d9da
parent 05c88c6886de6294541aa36cc86afbb8d6f3138f
Author: Chris Bracken <chris@bracken.jp>
Date: Sat, 7 Mar 2026 11:50:56 +0900
zed: remove Obj-C support hack now that it's officially supported
Previously you could trick zed into treating Obj-C like C++ and it would
use clangd to analyse the code. Now Obj-C support is built in.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.config/zed/settings.json b/.config/zed/settings.json
@@ -24,8 +24,8 @@
"calt": false,
},
"file_types": {
- "C": ["c", "m"],
- "C++": ["cc", "cpp", "mm"]
+ "C": ["c"],
+ "C++": ["cc", "cpp"],
},
"tab_size": 2,
"vim": {