File tree Expand file tree Collapse file tree 3 files changed +9
-24
lines changed Expand file tree Collapse file tree 3 files changed +9
-24
lines changed Original file line number Diff line number Diff line change 190
190
<a id =" markdown-next-release " name =" next-release " ></a >
191
191
192
192
- Added:
193
- - Binary target for ` giti ` . This will be an interactive git client that is tuified. It
194
- is meant to be a useful productivity tool and an example of what is possible w/ tuify.
193
+ - Binary target for ` giti ` . This is an interactive git client that is tuified. It is a
194
+ productivity tool for git workflows, and is meant as a replacement for directly using
195
+ ` git ` . This also serves as a real world example of using the ` r3bl_tuify ` crate.
196
+ - View all the ` giti branch ` subcommands (e.g. ` delete ` , ` checkout ` , ` new ` , etc.) and
197
+ select one subcommand using the ` select_from_list() ` when ` giti branch ` runs.
198
+ - Delete one or more branches using ` select_from_list() ` when ` giti branch delete `
199
+ command runs.
200
+ - ` Ctrl + c ` now behaves just like the ` Escape ` key. In the past, pressing ` Ctrl + c `
201
+ would do nothing the user could not exit the app by pressing this shortcut.
195
202
196
203
### v0.1.21 (2023-10-21)
197
204
<a id =" markdown-v0.1.21-2023-10-21 " name =" v0.1.21-2023-10-21 " ></a >
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ def main [...args: string] {
32
32
match $command {
33
33
" watch-one-test" => {watch-one-test $args }
34
34
" watch-macro-expansion-one-test" => {watch-macro-expansion-one-test $args }
35
- " all" => {all }
36
35
" build" => {build }
37
36
" clean" => {clean }
38
37
" run" => {run }
@@ -104,7 +103,6 @@ def print-help [command: string] {
104
103
if $command == " all" {
105
104
print $' Usage: (ansi blue_bold )run.nu(ansi reset ) (ansi green_bold )<command>(ansi reset ) (ansi yellow )[args](ansi reset )'
106
105
print $' (ansi green_bold )<command>(ansi reset ) can be:'
107
- print $' (ansi green )all(ansi reset )'
108
106
print $' (ansi green )build(ansi reset )'
109
107
print $' (ansi green )clean(ansi reset )'
110
108
print $' (ansi green )run(ansi reset )'
@@ -132,15 +130,6 @@ def print-help [command: string] {
132
130
}
133
131
}
134
132
135
- def all [] {
136
- clean
137
- build
138
- test
139
- clippy
140
- docs
141
- rustfmt
142
- }
143
-
144
133
def build [] {
145
134
cargo build
146
135
}
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ def main [...args: string] {
30
30
let command = $args | get 0
31
31
32
32
match $command {
33
- " all" => {all }
34
33
" build" => {build }
35
34
" clean" => {clean }
36
35
" run" => {run }
@@ -115,7 +114,6 @@ def print-help [command: string] {
115
114
if $command == " all" {
116
115
print $' Usage: (ansi blue_bold )run.nu(ansi reset ) (ansi green_bold )<command>(ansi reset ) (ansi yellow )[args](ansi reset )'
117
116
print $' (ansi green_bold )<command>(ansi reset ) can be:'
118
- print $' (ansi green )all(ansi reset )'
119
117
print $' (ansi green )build(ansi reset )'
120
118
print $' (ansi green )clean(ansi reset )'
121
119
print $' (ansi green )run(ansi reset )'
@@ -145,15 +143,6 @@ def print-help [command: string] {
145
143
}
146
144
}
147
145
148
- def all [] {
149
- clean
150
- build
151
- test
152
- clippy
153
- docs
154
- rustfmt
155
- }
156
-
157
146
def build [] {
158
147
cargo build
159
148
}
You can’t perform that action at this time.
0 commit comments