什麼是vim錄音以及如何禁用它?

我一直在gvim 7.2窗口底部看到recording信息。 html

它是什麼以及如何將其關閉? express


#1樓

這意味着你處於「記錄宏」模式。 經過鍵入q後跟註冊名稱輸入此模式,能夠經過再次鍵入q退出。 vim


#2樓

聽起來你打開了微距錄音。 要關閉它,請按qapp

有關詳細信息,請參閱「 :幫助記錄 」。 less

相關連接: ide


#3樓

您能夠經過q <letter>開始錄製,而後再次輸入q便可結束錄製。 spa

錄製是Vim很是有用的功能。 .net

它記錄您鍵入的全部內容。 而後,您只需鍵入@ <letter>便可重播。 記錄搜索,移動,替換...... code

Vim恕我直言的最佳功能之一。 htm


#4樓

正如其餘人所說,它是宏錄製,你用q關閉它。 這是一篇很好的文章,講述瞭如何以及爲何它有用。


#5樓

鍵入:h錄音以瞭解更多信息。

*q* *recording*
q{0-9a-zA-Z"}           Record typed characters into register {0-9a-zA-Z"}
                        (uppercase to append).  The 'q' command is disabled
                        while executing a register, and it doesn't work inside
                        a mapping.  {Vi: no recording}

q                       Stops recording.  (Implementation note: The 'q' that
                        stops recording is not stored in the register, unless
                        it was the result of a mapping)  {Vi: no recording}


                                                        *@*
@{0-9a-z".=*}           Execute the contents of register {0-9a-z".=*} [count]
                        times.  Note that register '%' (name of the current
                        file) and '#' (name of the alternate file) cannot be
                        used.  For "@=" you are prompted to enter an
                        expression.  The result of the expression is then
                        executed.  See also |@:|.  {Vi: only named registers}
相關文章
相關標籤/搜索