Created
September 4, 2024 01:41
-
-
Save yarcowang/9d124140a00874e0d463739ce36efb44 to your computer and use it in GitHub Desktop.
Toggle Xcode Index for Unreal Projects
This file contains 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
# | |
# Toggle Xcode index (for unreal projects) | |
# Original CMD: defaults write com.apple.dt.XCode IDEIndexDisable 1 | |
# You can put this function into your own `.bash_profile` or `.bash_rc` | |
# | |
toggleXcodeIdx() { | |
CURR="$(defaults read com.apple.dt.XCode IDEIndexDisable)" | |
echo "Current State: $CURR" | |
case $CURR in | |
0) | |
echo "Changed: 0 (index enabled) => 1 (index disabled)" | |
defaults write com.apple.dt.XCode IDEIndexDisable 1 >> /dev/null | |
;; | |
1) | |
echo "Changed: 1 (index disabled) => 0 (index enabled)" | |
defaults write com.apple.dt.XCode IDEIndexDisable 0 >> /dev/null | |
;; | |
*) | |
echo "Unknown command!" | |
;; | |
esac | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment