EditScreen: Format with google-java-format
Change-Id: If69b9af381340ec4158f60250c46710fdf93fa22
This commit is contained in:
		@@ -572,16 +572,24 @@ public class EditScreen extends Screen {
 | 
				
			|||||||
      }
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    Configuration cfg = Configuration.create().set("autoCloseBrackets", prefs.autoCloseBrackets())
 | 
					    Configuration cfg =
 | 
				
			||||||
        .set("cursorBlinkRate", prefs.cursorBlinkRate()).set("cursorHeight", 0.85)
 | 
					        Configuration.create()
 | 
				
			||||||
        .set("indentUnit", prefs.indentUnit())
 | 
					            .set("autoCloseBrackets", prefs.autoCloseBrackets())
 | 
				
			||||||
        .set("keyMap", prefs.keyMapType().name().toLowerCase())
 | 
					            .set("cursorBlinkRate", prefs.cursorBlinkRate())
 | 
				
			||||||
        .set("lineNumbers", prefs.hideLineNumbers()).set("lineWrapping", false)
 | 
					            .set("cursorHeight", 0.85)
 | 
				
			||||||
        .set("matchBrackets", prefs.matchBrackets()).set("mode", mode != null ? mode.mime() : null)
 | 
					            .set("indentUnit", prefs.indentUnit())
 | 
				
			||||||
        .set("origLeft", editContent).set("scrollbarStyle", "overlay")
 | 
					            .set("keyMap", prefs.keyMapType().name().toLowerCase())
 | 
				
			||||||
        .set("showTrailingSpace", prefs.showWhitespaceErrors()).set("styleSelectedText", true)
 | 
					            .set("lineNumbers", prefs.hideLineNumbers())
 | 
				
			||||||
        .set("tabSize", prefs.tabSize()).set("theme", prefs.theme().name().toLowerCase())
 | 
					            .set("lineWrapping", false)
 | 
				
			||||||
        .set("value", "");
 | 
					            .set("matchBrackets", prefs.matchBrackets())
 | 
				
			||||||
 | 
					            .set("mode", mode != null ? mode.mime() : null)
 | 
				
			||||||
 | 
					            .set("origLeft", editContent)
 | 
				
			||||||
 | 
					            .set("scrollbarStyle", "overlay")
 | 
				
			||||||
 | 
					            .set("showTrailingSpace", prefs.showWhitespaceErrors())
 | 
				
			||||||
 | 
					            .set("styleSelectedText", true)
 | 
				
			||||||
 | 
					            .set("tabSize", prefs.tabSize())
 | 
				
			||||||
 | 
					            .set("theme", prefs.theme().name().toLowerCase())
 | 
				
			||||||
 | 
					            .set("value", "");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (editContent.contains("\r\n")) {
 | 
					    if (editContent.contains("\r\n")) {
 | 
				
			||||||
      cfg.set("lineSeparator", "\r\n");
 | 
					      cfg.set("lineSeparator", "\r\n");
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user