请看 airline 的 README StatusLine 主题可以找的
不错!
Command + Shift + L 后操作对象就变为每一行了,CMD+Left/Right 可跳到行首或行尾 上完整步骤: CMD+A 选中所有,CMD+Shift+L 进入多行编辑模式,CMD+Left 跳至行首,输入引号,CMD+Right 跳至行尾,输入引号和逗号,ESC,一直按 CMD+J,删掉最后一个逗号,CMD+L 选中改行,输入引号。
@JohnLu 其实配图下面的字说的很清楚了(Command + Shift + L) , 另外你只需要知道 command + j
哇喔 我可以吃免费的午餐,课程目录在哪里呢?
hooopo, ashchan +1 还有这篇 http://yehudakatz.com/2011/05/30/gem-versioning-and-bundler-doing-it-right/
名字有点怪
@ery 不一样的,我 fork 了下你的脚本,小改了下,可以把 railscasts 下载下来并归类,pro 的,revised 的自动放到 pro 或 revised 文件夹
@ery 收费用户登陆进去 rss 地址是一样的么?
第一次连的时候 要设置规则 开放端口 @xiaogui说得对。ec2 的 web console 上有方法。按照文档来绝对能行
@ashchan 就是啊,用 ruby 或 rails session countdown 做关键字根本搜不到什么东西,那里提 issue 估计也没用,都 2 3 年没维护了
响应一下!
一处单词拼写错误 thed ......
@sundevilyang 按道理来说 把~/Library/Applicaiton Supporst /Subl 下的文件夹的东西删掉 就可以了 这里都是配置相关的东西,这样把 你装个 trashme 或 cleanmymac(都需要破解)之类的卸载软件扫描下,把所有 subl 相关的都删掉把 再装下把
@xiaolai 没事 软链接占不了多少空间的 你可以类比下 windows 下的快捷方式 这样也没什么问题 这些命令都是最新的了
@nuanshuidai ubuntu 12.04 装了中文语言支持就可以输入中文的啊
@xiaolai 呵呵,就算你不知道 brew link,你也可以自己创建软链接到 /usr/local/bin , 一般/usr/local/bin 在 path 中比/usr/bin 靠前
删掉~/Library/Applicaiton Supporst /Subl 下的文件夹(具体位置),回到解放前,插件重装下应该就可以了
@hooopo 嗯 的确,忘记了方法的查找机制了,thx! self.class.ancestors => [Object, Kernel, BasicObject]
@hooopo 你说的这个我理解啊,你这举的例子不跟那个链接的答案差不多嘛,都是说的一个道理,我想问的是 puts 是 public method,不能用这个例子来解释把
method(:puts).owner.public_methods.grep /puts/ => [:puts]
@huacnlee 为啥一个回复,chrome 弹了 3 个提醒啊?
可通过.methods,.public_instance_methods,.public_class_method 等等,加 grep 来筛选 如 Kernel.methods.grep /puts/
#1 楼 @alvin2ye 看了的 这个不见得比 ruby-doc 好 其实我是想问问为什么出现那种情况,给 james 发了邮件,他的回复是:
I really don't know. I thought it had something to do with aliasing, or with classes that are defined over multiple files, but I was just looking at some source code and now I'm not sure.
In some cases it does appear to be a case of one method simply aliased to another, but then we have "fork" duplicated.
That's a good question. Rdoc gives the option of including all methods, public and private (the default is to omit private methods).
ruby-doc is generated using the -all switch so all methods are included, but it apparently does not add anything to method descriptions to tell you visibility.
This is probably something that would have to be added by whomever maintains the rdoc code (Eric Hodel, perhaps).