diff --git a/modules/gui/macosx/UI/VLCLibraryWindow.xib b/modules/gui/macosx/UI/VLCLibraryWindow.xib
index dabe0892dba7b9894ef7ef56022d71e5489a0762..0cfef7840297edbffdaeffe792f4f195f5b02da1 100644
--- a/modules/gui/macosx/UI/VLCLibraryWindow.xib
+++ b/modules/gui/macosx/UI/VLCLibraryWindow.xib
@@ -91,7 +91,7 @@
                                             <rect key="frame" x="0.0" y="0.0" width="237" height="235"/>
                                             <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                             <subviews>
-                                                <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" multipleSelection="NO" autosaveColumns="NO" rowSizeStyle="automatic" viewBased="YES" id="Fr1-af-8gb" customClass="VLCPlaylistTableView">
+                                                <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" autosaveColumns="NO" rowSizeStyle="automatic" viewBased="YES" id="Fr1-af-8gb" customClass="VLCPlaylistTableView">
                                                     <rect key="frame" x="0.0" y="0.0" width="237" height="235"/>
                                                     <autoresizingMask key="autoresizingMask"/>
                                                     <size key="intercellSpacing" width="3" height="2"/>
diff --git a/modules/gui/macosx/VLCPlaylistTableView.m b/modules/gui/macosx/VLCPlaylistTableView.m
index fc0fad676f1b979ddc736cda74ae84b93e73c6ee..0c6034912b28833dbeedd075eeccad4a641ca29d 100644
--- a/modules/gui/macosx/VLCPlaylistTableView.m
+++ b/modules/gui/macosx/VLCPlaylistTableView.m
@@ -61,14 +61,24 @@
     }
 
     size_t indexOfSelectedItem = self.selectedRow;
+    NSIndexSet *selectedIndexes = [self selectedRowIndexes];
 
     switch(key) {
         case NSDeleteCharacter:
         case NSDeleteFunctionKey:
         case NSDeleteCharFunctionKey:
         case NSBackspaceCharacter:
-            [[[VLCMain sharedInstance] playlistController] removeItemAtIndex:indexOfSelectedItem];
+        {
+            if (selectedIndexes.count == 1) {
+                [[[VLCMain sharedInstance] playlistController] removeItemAtIndex:indexOfSelectedItem];
+            } else {
+                VLCPlaylistController *playlistController = [[VLCMain sharedInstance] playlistController];
+                [selectedIndexes enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL * _Nonnull stop) {
+                    [playlistController removeItemAtIndex:idx];
+                }];
+            }
             break;
+        }
 
         case NSEnterCharacter:
         case NSCarriageReturnCharacter: