Tagged Questions
0
votes
1answer
85 views
In Vim, how can I automatically determine whether to use spaces or tabs for indentation?
Sometimes I edit others source code where the prevailing style is to use tabs. In this case, I want to keep the existing convention of using literal tabs.
For files I create myself, and files that ...
6
votes
2answers
274 views
Indent the middle of multiple lines
I often run into situations like this:
title : Jekyll Bootstrap
tagline: Site Tagline
author :
name : Name Lastname
email : blah@email.test
github : username
twitter : username
feedburner : ...
1
vote
1answer
320 views
How to change vim auto-indent behavior?
By default vim aligns lines inside LI tags on the same position as the position of LI tag, but I want the contents of LI to have deeper indentation.
Current behaviour:
<LI>
first line
second ...
4
votes
2answers
169 views
Indenting multiple files
I want to indent multiple files which are poorly indented and indent them properly as would vim do when I type gg=G.
Is there someway to enter the = command or its alias in the command mode? i.e ...
4
votes
1answer
864 views
vim auto indenting even after setting noai option
I am using vim 7.2 from putty terminal.
Even if I run set noai it seems vim still trying to indent code.
I am copying my code from Notepad++ to vim.
following is from Notepad++
and following what I ...