From 9adfc63a36b5fa3f7e3e100a6cab828c6f23cf50 Mon Sep 17 00:00:00 2001 From: Josh Duff Date: Sun, 29 Jan 2017 19:28:57 -0800 Subject: [PATCH] Removing unnecessary word (#571) --- docs/reference/plugins/plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/plugins/plugin.md b/docs/reference/plugins/plugin.md index f77089bc0..2e99ede89 100644 --- a/docs/reference/plugins/plugin.md +++ b/docs/reference/plugins/plugin.md @@ -145,7 +145,7 @@ The `data` object contains the `key` which is a string name of the key that was } ``` -The `isMod` boolean is `true` if the `control` key was pressed on Windows or the `command` key was pressed on Mac _without_ the `alt/option` key was also being pressed. This is a convenience for adding hotkeys like `command+b`. +The `isMod` boolean is `true` if the `control` key was pressed on Windows or the `command` key was pressed on Mac _without_ the `alt/option` key also being pressed. This is a convenience for adding hotkeys like `command+b`. The `isModAlt` boolean is `true` if the `control` key was pressed on Windows or the `command` key was pressed on Mac _and_ the `alt/option` key was also being pressed. This is a convenience for secondary hotkeys like `command+option+1`.