zoukankan      html  css  js  c++  java
  • Re-enable Alcatraz on Xcode 6.3.2 or newer

    I’ve been using Alcatraz to manage Xcode plug-ins for some time now. After updating to Xcode 6.3.2 and restarting, I was prompted with this:

    Without paying too much attention, I clicked “Skip Bundles”, and all my Xcode plugins were disabled.

    It turns out, Xcode now has a whitelist / blacklist of bundles you enable. You can check it from the Terminal by running:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    
    $ defaults read com.apple.dt.Xcode DVTPlugInManagerNonApplePlugIns-Xcode-6.3.2
    {
        allowed =     {
        };
        skipped =     {
            "com.mneorr.Alcatraz" =         {
                version = 1;
            };
            "com.onevcat.VVDocumenter-Xcode" =         {
                version = 1;
            };
            "com.travisjeffery.ClangFormat" =         {
                version = 1;
            };
        };
    }

    The bad news is that the prompt to load the bundles won’t show again, even if you reinstall Alcatraz. The fix is simple though, just delete the whitelist / blacklist by running:

    defaults delete com.apple.dt.Xcode DVTPlugInManagerNonApplePlugIns-Xcode-6.3.2

    and re-open Xcode to be prompted again (and this time make sure you click “Load Bundles”).

  • 相关阅读:
    css 如何让背景图片拉伸填充避免重复显示
    CDHtmlDialog 基本使用
    RES协议
    Sata win7 热插拔(AHCI)
    __argc和__argv变量
    MFC进度条刷新处理
    SVN强制注释
    自动build服务器 CruiseControl.NET
    opencv Mat 像素操作
    std::string 用法
  • 原文地址:https://www.cnblogs.com/XCoderLiu/p/4595092.html
Copyright © 2011-2022 走看看