We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ef4d14 commit 94586c2Copy full SHA for 94586c2
src/event.rs
@@ -41,6 +41,10 @@ impl FromStr for WorkspaceEventInfo {
41
"init" => WorkspaceChange::Init,
42
"empty" => WorkspaceChange::Empty,
43
"urgent" => WorkspaceChange::Urgent,
44
+ "rename" => WorkspaceChange::Rename,
45
+ "reload" => WorkspaceChange::Reload,
46
+ "move" => WorkspaceChange::Move,
47
+ "restored" => WorkspaceChange::Restored,
48
_ => unreachable!()
49
},
50
current: match val.find("current").unwrap().clone() {
@@ -196,7 +200,11 @@ pub mod inner {
196
200
Focus,
197
201
Init,
198
202
Empty,
199
- Urgent
203
+ Urgent,
204
+ Rename,
205
+ Reload,
206
+ Restored,
207
+ Move,
208
}
209
210
/// The kind of output change.
0 commit comments