Vim에서 줄에 주석을 달거나 주석을 제거하는 빠른 방법은 무엇입니까? 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 첫 번째 def ... end섹션 에있는 모든 줄의 주석 처..