mirror of
https://github.com/swaywm/sway.git
synced 2025-11-14 06:59:47 -05:00
Implement key bindings
This commit is contained in:
parent
4181c36862
commit
a78b921803
6 changed files with 97 additions and 7 deletions
|
|
@ -4,6 +4,7 @@
|
|||
#include "readline.h"
|
||||
#include "stringop.h"
|
||||
#include "list.h"
|
||||
#include "log.h"
|
||||
#include "commands.h"
|
||||
#include "config.h"
|
||||
|
||||
|
|
@ -33,7 +34,7 @@ struct sway_config *read_config(FILE *file) {
|
|||
goto _continue;
|
||||
}
|
||||
|
||||
if (handle_command(config, line) != 0) {
|
||||
if (!temp_depth && handle_command(config, line) != 0) {
|
||||
success = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue