diff --git a/BFR/MainWindow.xaml b/BFR/MainWindow.xaml
index 7a67239..fde5052 100644
--- a/BFR/MainWindow.xaml
+++ b/BFR/MainWindow.xaml
@@ -162,6 +162,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/BFR/MainWindowUIProperties.cs b/BFR/MainWindowUIProperties.cs
index 688f1cc..43f4c73 100644
--- a/BFR/MainWindowUIProperties.cs
+++ b/BFR/MainWindowUIProperties.cs
@@ -24,7 +24,8 @@ namespace BFR
public OperationType[] OperationTypes { get; } = new[]
{
OperationType.Make(),
- OperationType.Make()
+ OperationType.Make(),
+ OperationType.Make(),
};
public readonly AvaloniaProperty isCommitButtonEnabled =
diff --git a/BFR/Operations/Remove.cs b/BFR/Operations/Remove.cs
new file mode 100644
index 0000000..33d5107
--- /dev/null
+++ b/BFR/Operations/Remove.cs
@@ -0,0 +1,8 @@
+namespace BFR.Operations
+{
+ class Remove : Replace
+ {
+ public override string Name => nameof(Remove);
+ public override string Description => "Removes the selected part of the file name.";
+ }
+}