Add `.clang_complete` and `Xdummy.so` to gitignore
Patch status: merged
Patch by Tony Crisci
Long description:
Adds two files to gitignore. `.clang_complete` is created by the clang_complete vim plugin [https://github.com/Rip-Rip/clang_complete] `Xdummy.so` is created by compiling the Xdummy module.
To apply this patch, use:
curl http://cr.i3wm.org/patch/282/raw.patch | git am
b/.gitignore
| 20 | 
	  
	  @@ -31,3 +31,4 @@ docs/*.html  | 
  
| 21 | 
	  
	  !/docs/refcard.html  | 
  
| 22 | 
	  
	  i3-command-parser.stamp  | 
  
| 23 | 
	  
	  i3-config-parser.stamp  | 
  
| 24 | 
	  
	  +.clang_complete  | 
  
b/testcases/.gitignore
| 29 | 
	  
	  @@ -8,3 +8,4 @@ inc  | 
  
| 30 | 
	  
	  META.yml  | 
  
| 31 | 
	  
	  i3-cfg-for-*  | 
  
| 32 | 
	  
	  -  | 
  
| 33 | 
	  
	  +Xdummy.so  |