9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Xcode 7.0にアップデート後、使えなくなったプラグイン(XVim等)を使えるようにする

Last updated at Posted at 2015-09-19

概要

Xcode 7.0にしたら、プラグインが使えなくなってしまった。
 →「XVim」が使えなくなった。

解決方法

Xcode 7.0でUUIDが変更されているので追加する。

手順

UUIDの追加

$ find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -IFILE defaults write FILE DVTPlugInCompatibilityUUIDs -array-add AABB7188-E14E-4433-AD3B-5CD791EAD9A3

確認(UUIDが追加されていること)

find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -IFILE defaults read FILE DVTPlugInCompatibilityUUIDs 

Xcodeを再起動する。

以上で、XVimに関しては利用できるようになった。

参考にさせていただいたポスト

Xcode 7 beta support · Issue #772 · XVimProject/XVim
https://github.com/XVimProject/XVim/issues/772

Xcode 6.2にアップデートするとプラグインが効かなくなる問題の解決策 - Qiita
http://qiita.com/manhattan918/items/103f0ab55031799ecd61

Xcode 5.1にupdateした後に、使えなくなったxcode plug-inを再び使えるようにする方法 - Qiita
http://qiita.com/roothybrid7/items/85bacb992a22aaad04cd

9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?