Skip to content

Instantly share code, notes, and snippets.

@yarcowang
Created September 4, 2024 01:41
Show Gist options
  • Save yarcowang/9d124140a00874e0d463739ce36efb44 to your computer and use it in GitHub Desktop.
Save yarcowang/9d124140a00874e0d463739ce36efb44 to your computer and use it in GitHub Desktop.
Toggle Xcode Index for Unreal Projects
#
# 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