vim_notes
Table of Contents
How can I
vertical alignment of columns
show line endings
change the encoding to utf-8
:set fileencoding=utf8 :w myfilename
Ref:- https://stackoverflow.com/questions/9310274/how-can-i-use-vim-to-convert-my-file-to-utf8
insert newline in search and replace
:%s/29/\r29/gc
will insert a new line before each occurrence of 29.
join lines with a character
:nmap J :s/\n/, /^M
vim_notes.txt · Last modified: 2021/07/02 19:30 by admin