diff --git a/src/pane.coffee b/src/pane.coffee index 9886c735e..143733a56 100644 --- a/src/pane.coffee +++ b/src/pane.coffee @@ -722,7 +722,7 @@ class Pane extends Model @notificationManager.addWarning("Unable to save file: #{error.message}") else if error.code is 'EACCES' addWarningWithPath('Unable to save file: Permission denied') - else if error.code in ['EPERM', 'EBUSY', 'UNKNOWN', 'EEXIST', 'ELOOP'] + else if error.code in ['EPERM', 'EBUSY', 'UNKNOWN', 'EEXIST', 'ELOOP', 'EAGAIN'] addWarningWithPath('Unable to save file', detail: error.message) else if error.code is 'EROFS' addWarningWithPath('Unable to save file: Read-only file system')