groenewege/vim-less

Not indenting anymore ?

pmaoui opened this issue · 1 comments

Is there any reason that my VIM doesn't indent anything even a simple code with an unformated line like :

h2 {
  text-align:center;
font-size:11px;
  margin:0;
  text-transform:none;
  letter-spacing:0;
}

I can't do anything (gg=G or select text then =) to indent it.

I use gVim 7.4 and it worked before upgrading with vundle.
I tried to disable every other plugins with no luck.

Edit : this is a real issue due to 874a48d
All versions before this commit work for me

I am experiencing a slightly different issue (that may be related). When using gg=G, the first line of every block is indented two spaces:

footer {
  background-color:#000;
    color:#fff;
    font-size:12px;
    margin-top:10px;
    padding:30px 0px 30px 0px;
}

My Vim config is set to 4 space indent.