问题:
I have a Ruby code file open in vi, there are lines commented out with #
: 我在vi中打开了一个Ruby代码文件,有一些注释掉了#
:
class Search < ActiveRecord::Migration
def self.up
# create_table :searches do |t|
# t.integer :user_id
# t.string :name
# t.string :all_of
# t.string :any_of
# t.string :none_of
# t.string :exact_phrase
#
# t.timestamps
# end
end
def self.down
# drop_table :searches
end
end
Say I want to uncomment all the lines in the first def ... end
section. 假设我想取消注释第一个def ... end
部分中的所有行。 What's an efficient way to do that in Vim? 在Vim中这样做的有效方法是什么?
In general, I'm looking for an easy and fluid way to comment and uncomment lines. 一般来说,我正在寻找一种简单流畅的方式来评论和取消注释。 Here I'm dealing with Ruby code, but it could be JavaScript ( //
) or Haml ( -#
). 在这里,我正在处理Ruby代码,但它可能是JavaScript( //
)或Haml( -#
)。
解决方案:
参考一: https://stackoom.com/question/72AS/什么是在Vim中评论-取消注释行的快速方法参考二: https://oldbug.net/q/72AS/What-s-a-quick-way-to-comment-uncomment-lines-in-Vim
来源:oschina
链接:https://my.oschina.net/u/4438370/blog/4313825