0
我正在使用mvim,我想摺疊類實驗。我怎麼做?如何摺疊在類中聲明的類在Ruby代碼中
class Lab
def method1
end
class Experiment
def method2
end
end # end of class Experiment
end # end of class Lab
我正在使用mvim,我想摺疊類實驗。我怎麼做?如何摺疊在類中聲明的類在Ruby代碼中
class Lab
def method1
end
class Experiment
def method2
end
end # end of class Experiment
end # end of class Lab
如果您想摺疊特定數量的行,請使用zf
,然後使用動作命令。例如,如果要摺疊class Experiment
中的所有行,請將光標放在def method2
的行上,並輸入zf2j
。 zf
是摺疊命令,2
是要摺疊到當前折線以下的行數,而j
表示向下的光標移動。其結果將是這樣的:
class Lab
def method1
end
class Experiment
+--------------- 3 lines: def method2 -------------------------
end # end of class Lab
您還可以使用視線模式來選擇你想摺疊,然後鍵入za
摺疊/非摺疊什麼。