Created
November 18, 2019 14:17
-
-
Save 50percentgrey/3623e11aed2009037f749a5601f57f09 to your computer and use it in GitHub Desktop.
MVVM jump to counterparts in Xcode
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
run in terminal | |
defaults write com.apple.dt.Xcode IDEAdditionalCounterpartSuffixes -array-add "ViewModel" "ViewController" "Coordinator" "Repository" | |
close Xcode and open it again. | |
jump by using Ctrl+Cmd+Up and Ctrl+Cmd+Down | |
if you want to revert the change | |
defaults delete com.apple.dt.Xcode IDEAdditionalCounterpartSuffixes | |
ref: https://gist.github.com/danielmartin/8411c303e5c8702c19c65950b49635b8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment