File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
// ignore_for_file: unnecessary_string_escapes
2
2
3
- final defaultsYaml= '''commands:
3
+ final defaultsYaml= r '''commands:
4
4
j:
5
5
name: apps
6
6
children:
@@ -34,6 +34,6 @@ final defaultsYaml='''commands:
34
34
# hooks:
35
35
# preRun:
36
36
# #this emits the shortcut to hide the terminal window
37
- # - say 'good job \ $ USER'
37
+ # - say 'good job $USER'
38
38
# - command: osascript -e 'tell application "System Events" to key code 24 using {shift down, control down}'
39
39
''' ;
Original file line number Diff line number Diff line change 1
1
name : terrun
2
2
description : terrun - efficient terminal runner
3
- version : 0.0.7
3
+ version : 0.0.8
4
4
repository : https://github.com/mikeborodin/menusc
5
5
6
6
environment :
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ yaml=`cat terrun.starter.yaml`
2
2
3
3
echo " // ignore_for_file: unnecessary_string_escapes
4
4
5
- final defaultsYaml='''$yaml
5
+ final defaultsYaml=r '''$yaml
6
6
''';" > lib/features/configure/defaults.dart
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ commands:
4
4
children :
5
5
j :
6
6
name : Chrome
7
- command : open -a Google\\ Chrome.app
7
+ command : open -a Google\ Chrome.app
8
8
t :
9
9
name : Telegram
10
10
command : open -a telegram
@@ -16,7 +16,7 @@ commands:
16
16
command : open -a slack
17
17
d :
18
18
name : VSCode
19
- command : open -a Visual\\ Studio\ \ Code.app
19
+ command : open -a Visual\ Studio\ Code.app
20
20
21
21
# todo(user): customize it
22
22
# f:
@@ -32,5 +32,5 @@ commands:
32
32
# hooks:
33
33
# preRun:
34
34
# #this emits the shortcut to hide the terminal window
35
- # - say 'good job \ $USER'
35
+ # - say 'good job $USER'
36
36
# - command: osascript -e 'tell application "System Events" to key code 24 using {shift down, control down}'
You can’t perform that action at this time.
0 commit comments