mirror of
				https://github.com/labwc/labwc.git
				synced 2025-10-29 05:40:24 -04:00 
			
		
		
		
	 1ac654f006
			
		
	
	
		1ac654f006
		
	
	
	
	
		
			
			The files:
    include/config/mousebind.h
    src/config/mousebind.c
    src/config/rc.xml
were formatted automatically via clang-format using the rules specified
in the .clang-format file. Specifically, the command;
clang-format -i -style=file include/config/mousebind.h \
src/config/mousebind.c src/config/rc.xml
This is unfortunately adding a break before the brace in enum
declarations
		
	
			
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| BasedOnStyle: LLVM
 | |
| IndentWidth: 8
 | |
| AlwaysBreakAfterReturnType: TopLevel
 | |
| UseTab: ForIndentation
 | |
| BreakBeforeBraces: Linux
 | |
| AllowShortEnumsOnASingleLine: false
 | |
| AlignAfterOpenBracket: DontAlign
 |