diff --git a/README.md b/README.md index 456a14c..d91d9c1 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ local ez = require("awesome-ez") Use `ez.keytable` to define key bindings: ```lua local globalkeys = ez.keytable { - ["M-"] = {awful.spawn, "xterm"}, + ["M-Return"] = {awful.spawn, "xterm"}, ... } ``` @@ -40,8 +40,6 @@ Binding definition strings consist of modifier characters and a key or button separated by hyphens, e.g. `M-S-x` is the combination of `Mod4`, `Shift`, and the `x` key. -Key names longer than 1 character must be surrounded by `<>`, e.g. `M-`. - See the [API documentation](https://jcrd.github.io/awesome-ez/) for descriptions of all functions.