Skip to content

Commit 1e6bbdd

Browse files
committed
Organize usings
1 parent a2f70f4 commit 1e6bbdd

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
using System;
22
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Globalization;
5+
using System.Windows.Input;
36
using System.Linq;
7+
using System.Text;
48
using System.Threading;
9+
using System.Threading.Channels;
510
using System.Threading.Tasks;
611
using System.Windows;
12+
using System.Windows.Media;
13+
using System.Windows.Threading;
14+
using CommunityToolkit.Mvvm.DependencyInjection;
15+
using CommunityToolkit.Mvvm.Input;
716
using Flow.Launcher.Core.Plugin;
817
using Flow.Launcher.Core.Resource;
918
using Flow.Launcher.Infrastructure;
1019
using Flow.Launcher.Infrastructure.Hotkey;
20+
using Flow.Launcher.Infrastructure.Image;
21+
using Flow.Launcher.Infrastructure.Logger;
1122
using Flow.Launcher.Infrastructure.Storage;
1223
using Flow.Launcher.Infrastructure.UserSettings;
1324
using Flow.Launcher.Plugin;
1425
using Flow.Launcher.Plugin.SharedCommands;
1526
using Flow.Launcher.Storage;
16-
using Flow.Launcher.Infrastructure.Logger;
1727
using Microsoft.VisualStudio.Threading;
18-
using System.Text;
19-
using System.Threading.Channels;
20-
using ISavable = Flow.Launcher.Plugin.ISavable;
21-
using CommunityToolkit.Mvvm.Input;
22-
using System.Globalization;
23-
using System.Windows.Input;
24-
using System.ComponentModel;
25-
using Flow.Launcher.Infrastructure.Image;
26-
using System.Windows.Media;
27-
using CommunityToolkit.Mvvm.DependencyInjection;
28-
using System.Windows.Threading;
2928

3029
namespace Flow.Launcher.ViewModel
3130
{

0 commit comments

Comments
 (0)