File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,6 @@ See: http://www.katalon.com/automation-recorder
106
106
107
107
* Options:
108
108
`` -n `` (Add line Numbers to the rows)
109
- `` -w `` (Use word-Wrap for long lines)
110
109
111
110
* Output:
112
111
Prints the code/text of any file
Original file line number Diff line number Diff line change @@ -202,7 +202,6 @@ def show_print_usage():
202
202
print (" OR: sbase print [FILE] [OPTIONS]" )
203
203
print (" Options:" )
204
204
print (" -n (Add line Numbers to the rows)" )
205
- print (" -w (Use word-Wrap for long lines)" )
206
205
print (" Output:" )
207
206
print (" Prints the code/text of any file" )
208
207
print (" with syntax-highlighting." )
Original file line number Diff line number Diff line change 6
6
OR: sbase print [FILE] [OPTIONS]
7
7
Options:
8
8
-n (Add line Numbers to the rows)
9
- -w (Use word-Wrap for long lines)
10
9
Output:
11
10
Prints the code/text of any file
12
11
with syntax-highlighting.
@@ -24,7 +23,6 @@ def invalid_run_command(msg=None):
24
23
exp += " OR: sbase print [FILE] [OPTIONS]\n "
25
24
exp += " Options:\n "
26
25
exp += " -n (Add line Numbers to the rows)\n "
27
- exp += " -w (Use word-Wrap for long lines)\n "
28
26
exp += " Output:\n "
29
27
exp += " Prints the code/text of any file\n "
30
28
exp += ' with syntax-highlighting.\n '
@@ -67,7 +65,7 @@ def main():
67
65
c7 = colorama .Fore .BLACK + colorama .Back .MAGENTA
68
66
cr = colorama .Style .RESET_ALL
69
67
line_numbers = False
70
- word_wrap = False
68
+ word_wrap = True # Always use word wrap now
71
69
help_me = False
72
70
invalid_cmd = None
73
71
is_python_file = False
You can’t perform that action at this time.
0 commit comments