VIM Commands

Replace first character in the line with quote (in the whole file) %s/^/’/

Replace last character in the line with quote (in the whole file) %s/$/’/ Replace more than 1 space with nothing (in the whole file) %s/ \+//

: - go to command mode % – apply to the whole file ^ – first character in the line $ – last character in the line s/x/y – substitute x with y

Comments

Popular posts from this blog

Parse XML to dynamic object in C#

C# Updating GUI from different thread