rhysd/vim-clang-format

Sorted includes

angelskieglazki opened this issue · 1 comments

Before :ClangFormat
#include <common.h>
#include <command.h>
#include <tipwmss.h>
#include <asm/arch/gpio.h>
#include <asm/gpio.h>

After:
#include <asm/arch/gpio.h>
#include <asm/gpio.h>
#include <command.h>
#include <common.h>
#include <tipwmss.h>

My missfire.
I missed SortIncludes=false option.