Skip to content

Commit

Permalink
replace tab with space and remove unused usings.
Browse files Browse the repository at this point in the history
  • Loading branch information
hecomi committed Sep 1, 2019
1 parent eee8a5d commit d4530fe
Show file tree
Hide file tree
Showing 43 changed files with 4,306 additions and 4,324 deletions.
44 changes: 22 additions & 22 deletions Assets/uREPL/Examples/Scripts/FieldItemTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@ namespace uREPL

public class FieldItemTest : MonoBehaviour
{
public enum Number
{
One,
Two,
Three,
}
public enum Number
{
One,
Two,
Three,
}

public bool flag;
public int counter;
public float time;
public string text;
public Vector2 vec2;
public Vector3 vec3;
public Vector4 vec4;
public Quaternion rot;
public KeyCode keyCode = KeyCode.Escape;
public Number number = Number.One;
public Color32 color = Color.red;
public List<int> list = new List<int>();
public bool flag;
public int counter;
public float time;
public string text;
public Vector2 vec2;
public Vector3 vec3;
public Vector4 vec4;
public Quaternion rot;
public KeyCode keyCode = KeyCode.Escape;
public Number number = Number.One;
public Color32 color = Color.red;
public List<int> list = new List<int>();

void Update()
{
// dummy
}
void Update()
{
// dummy
}
}

}
64 changes: 32 additions & 32 deletions Assets/uREPL/Resources/uREPL/Xmls/Help.txt
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
- Keybinds

- Single-Line Input
- Ctrl + a : move to head.
- Ctrl + e : move to end.
- Ctrl + f : move forward.
- Ctrl + b : move back.
- Ctrl + h : remove one character before cursor position.
- Ctrl + d : remove one character after cursor position.
- Ctrl + k : remove all characters after cursor position.
- Ctrl + l : clear all outputs.
- Ctrl + n : show next history.
- Ctrl + p : show previous history.
- Ctrl + m : switch to multi-line mode.
- Up arrow : show next history.
- Down arrow : show previous history.
- Tab : show complementions.
- Enter : run input command.
- F1 : toggle window display on/off.
- Ctrl + a : move to head.
- Ctrl + e : move to end.
- Ctrl + f : move forward.
- Ctrl + b : move back.
- Ctrl + h : remove one character before cursor position.
- Ctrl + d : remove one character after cursor position.
- Ctrl + k : remove all characters after cursor position.
- Ctrl + l : clear all outputs.
- Ctrl + n : show next history.
- Ctrl + p : show previous history.
- Ctrl + m : switch to multi-line mode.
- Up arrow : show next history.
- Down arrow : show previous history.
- Tab : show complementions.
- Enter : run input command.
- F1 : toggle window display on/off.

- Multi-Line Input
- Ctrl + a : move to head.
- Ctrl + e : move to end.
- Ctrl + f : move forward.
- Ctrl + b : move back.
- Ctrl + n : move down.
- Ctrl + p : move up.
- Ctrl + h : remove one character before cursor position.
- Ctrl + d : remove one character after cursor position.
- Ctrl + k : remove all characters after cursor position.
- Ctrl + l : clear all outputs.
- Ctrl + m : switch to multi-line mode.
- Up arrow : move up.
- Down arrow : move down.
- Shift + Enter : run input command.
- Ctrl + Enter : run input command.
- F1 : toggle window display on/off.
- Ctrl + a : move to head.
- Ctrl + e : move to end.
- Ctrl + f : move forward.
- Ctrl + b : move back.
- Ctrl + n : move down.
- Ctrl + p : move up.
- Ctrl + h : remove one character before cursor position.
- Ctrl + d : remove one character after cursor position.
- Ctrl + k : remove all characters after cursor position.
- Ctrl + l : clear all outputs.
- Ctrl + m : switch to multi-line mode.
- Up arrow : move up.
- Down arrow : move down.
- Shift + Enter : run input command.
- Ctrl + Enter : run input command.
- F1 : toggle window display on/off.

- Completion
- Up arrow : select lower item.
Expand Down
Loading

0 comments on commit d4530fe

Please sign in to comment.