diff --git a/README.md b/README.md index c1179017..499d5cb8 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,6 @@ If you have not created an rc.xml config file, default bindings will be: | combination | action | ------------------------ | ------ | `alt`-`tab` | activate next window -| `alt`-`escape` | exit | `super`-`return` | alacritty | `alt`-`F3` | bemenu | `alt`-`F4` | close window diff --git a/docs/labwc-config.5.scd b/docs/labwc-config.5.scd index 034fb324..08a6f87a 100644 --- a/docs/labwc-config.5.scd +++ b/docs/labwc-config.5.scd @@ -153,7 +153,6 @@ The rest of this man page describes configuration options. ``` A-Tab - next window - A-Escape - exit W-Return - alacritty A-F3 - run bemenu A-F4 - close window diff --git a/docs/rc.xml.all b/docs/rc.xml.all index 1468b9f7..18ed01ed 100644 --- a/docs/rc.xml.all +++ b/docs/rc.xml.all @@ -82,9 +82,6 @@ 25 600 - - - diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 243e0614..ece59763 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -501,7 +501,6 @@ static struct { const char *binding, *action, *command; } key_combos[] = { { "A-Tab", "NextWindow", NULL }, - { "A-Escape", "Exit", NULL }, { "W-Return", "Execute", "alacritty" }, { "A-F3", "Execute", "bemenu-run" }, { "A-F4", "Close", NULL },