Skip to content

Commit

Permalink
Clarify notification action prompts
Browse files Browse the repository at this point in the history
Co-Authored-By: Andrew Dupont <3450+savetheclocktower@users.noreply.github.com>
  • Loading branch information
confused-Techie and savetheclocktower committed Feb 3, 2024
1 parent d695ef7 commit 3a6c76b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grammar-finder/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,15 +158,15 @@ class GrammarFinder {
}
},
{
text: `Disable Grammar-Finder for '${ext}'`,
text: `Don't suggest packages for '${ext}' files`,
onDidClick: () => {
let ignoreExtList = atom.config.get("grammar-finder.ignoreExtList");
ignoreExtList.push(ext);
atom.config.set("grammar-finder.ignoreExtList", ignoreExtList);
}
},
{
text: "Disable AutoFind",
text: "Never suggest packages for unrecognized files",
onDidClick: () => {
atom.config.set("grammar-finder.autoFind", false);
}
Expand Down

0 comments on commit 3a6c76b

Please sign in to comment.