Implement key bindings

This commit is contained in:
Drew DeVault 2015-08-08 19:24:18 -04:00
parent 4181c36862
commit a78b921803
6 changed files with 97 additions and 7 deletions

View file

@ -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;
}