ソースを参照

Flutter format

devmil 4 年 前
コミット
62bd432b35
1 ファイル変更3 行追加2 行削除
  1. 3 2
      lib/terminal/terminal.dart

+ 3 - 2
lib/terminal/terminal.dart

@@ -99,7 +99,8 @@ class Terminal with Observable implements TerminalUiInteraction {
   /// You can set or reset insert/replace mode as follows.
   bool _replaceMode = true; // ignore: unused_field
 
-  bool _screenMode = false; // ignore: unused_field, // DECSCNM (black on white background)
+  bool _screenMode =
+      false; // ignore: unused_field, // DECSCNM (black on white background)
   bool _autoWrapMode = true;
   bool get autoWrapMode => _autoWrapMode;
 
@@ -718,7 +719,7 @@ class Terminal with Observable implements TerminalUiInteraction {
 
   @override
   void selectAll() {
-    _selection.init(Position(0,0));
+    _selection.init(Position(0, 0));
     _selection.update(Position(terminalWidth, bufferHeight));
   }
 }