Stop auto-indenting dammit!
http://vim.wikia.com/wiki/How_to_stop_auto_indenting
Search it
http://vim.wikia.com/wiki/Search_and_replace
change font size
:set guifont=Menlo:h12
Install amsmath support for vim
https://tex.stackexchange.com/questions/416030/how-do-i-make-vim-highlight-math-properly-in-the-align-environment
search and replace:
s/foo/bar/g
- Find each occurrence of 'foo' (in the current line only), and replace it with 'bar'.
:%s/foo/bar/gc
- Change each 'foo' to 'bar', but ask for confirmation first.
No comments:
Post a Comment