开发者

Way to get VS 2008 to stop forcing indentation on namespaces?

开发者 https://www.devze.com 2022-12-19 08:31 出处:网络
I\'ve never really been a big fan of the way most editors handle namespaces. They always force you to add an extra pointless level of indentation.

I've never really been a big fan of the way most editors handle namespaces. They always force you to add an extra pointless level of indentation.

For instance, I have a lot of code in a page that I would much rather prefer formatted as

namespace mycode{

class myclass{
  void function(){
    foo();
  }
  void开发者_Python百科 foo(){
    bar();
  }
  void bar(){
    //code..
  }

}

}

and not something like

namespace mycode{

  class myclass{
    void function(){
      foo();
    }
    void foo(){
      bar();
    }
    void bar(){
      //code..
    }

  }

}

Honestly, I don't really even like the class thing being indented most of the time because I usually only have 1 class per file. And it doesn't look as bad here, but when you get a ton of code and lot of scopes, you can easily have indentation that forces you off the screen, and plus here I just used 2-space tabs and not 4-space as is used by us.

Anyway, is there some way to get Visual Studio to stop trying to indent namespaces for me like that?


It's a hack, but here goes:

namespace mycode{ 
#if 0
}
#endif

class myclass{
    ...
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号