From 9befede205951528a8cde3704ad803181ae5285c Mon Sep 17 00:00:00 2001 From: James Reed Date: Thu, 23 Jul 2020 13:03:12 -0600 Subject: [PATCH] README: Fix use of angle brackets --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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.