mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-04 04:20:09 -04:00
indents: refactor hanging indent
This commit is contained in:
parent
059fbc487c
commit
b9c38a48ca
3 changed files with 25 additions and 36 deletions
|
|
@ -1,17 +1,17 @@
|
|||
class Foo {
|
||||
|
||||
Foo(int a, int b, int c, int d)
|
||||
: m_a(a)
|
||||
, m_b(b)
|
||||
, m_c(c)
|
||||
, m_d(d) {}
|
||||
Foo(int a, int b, int c, int d)
|
||||
: m_a(a)
|
||||
, m_b(b)
|
||||
, m_c(c)
|
||||
, m_d(d) {}
|
||||
|
||||
Foo(int a, int b, int c) :
|
||||
m_a(a),
|
||||
m_b(b),
|
||||
m_c(c)
|
||||
{}
|
||||
Foo(int a, int b, int c) :
|
||||
m_a(a),
|
||||
m_b(b),
|
||||
m_c(c)
|
||||
{}
|
||||
|
||||
int m_a, m_b, m_c, m_d;
|
||||
int m_a, m_b, m_c, m_d;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue