You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ User can:
37
37
- Key in a character after \ to go to the closest matching file or directory on current path
38
38
- Backspace to edit the path
39
39
40
-
#####Usage:
40
+
Usage:
41
41
```
42
42
string userInput = AutoPrompt.GetPath("Choose certification file :\n\tUp/down arrow to go through files in current directory.\n\t'\\' to step into directory\n\tBackspace to edit\n\tOr just type to go to nearest search match\n\n>");
Prompts the user for input on command line with a prompt string as well as a pre filled input which can be edited
48
48
49
-
#####Usage:
49
+
Usage:
50
50
```
51
51
string userInput = AutoPrompt.PromptForInput("How do you feel? (Press backspce to edit) :", "Awesome");
52
52
```
@@ -57,7 +57,7 @@ string userInput = AutoPrompt.PromptForInput("How do you feel? (Press backspce t
57
57
58
58
Prompts the user for input on command line with a prompt string as well as a set of option that can be choosen using Up and Down arrow. The input is editable as well
59
59
60
-
#####Usage:
60
+
Usage:
61
61
```
62
62
string userInput = AutoPrompt.PromptForInput("Choose occupation (Press up/down arrow to choose) :", new string[] { "Engineer", "Scientist", "Salesman", "Manager", "TopManagement" });
Prompts the user for input on command line with a prompt string as well as a set of option. User can only choose among various options using Up and Down arrow.
@@ -78,7 +78,7 @@ Prompts the user for input on command line with a prompt string as well as a set
78
78
79
79
To search, key in an alphabet and the option closest match to the char key'd in will be set as user input
80
80
81
-
#####Usage:
81
+
Usage:
82
82
```
83
83
string userInput = AutoPrompt.PromptForInput_Searchable("Choose city (Press up/down arrow or type name) :", new string[] { "New York City", "San Fransisco", "New Delhi", "Bangalore", "Tokyo" });
Prompts the user for password input on command line. The entered password is masked with * echoded on the console with each characted of the password key'd in
0 commit comments