Skip to content

Commit

Permalink
feat: change "no match found" notification type to info
Browse files Browse the repository at this point in the history
  • Loading branch information
Noorts committed Jan 21, 2025
1 parent 5b8f287 commit 129b50e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/core/ToggleAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private void performToggleOnSingleCaret(Caret caret, Document document, Editor e
} else {
NotificationHandler.notifyWithOpenSettingsAction(
String.format("No match for \"%s\".", selectedToggleFromCaret),
NotificationType.WARNING, editor);
NotificationType.INFORMATION, editor);
}

/* Reset the caret selection to the state before the action was performed.
Expand Down

0 comments on commit 129b50e

Please sign in to comment.