diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/parser.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 70c8cc3..b8d5d86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file. - **FIXED**: Invisible windows of minimized programs - **FIXED**: Zombie processes spawned from apps - **FIXED**: Undefined behaviour in `parse_col` +- **FIXED**: Added monitor switching functions to call_table (#95) #### v1.5 (current) - **NEW**: Using XCursor instead of cursor font && new logo. diff --git a/src/parser.c b/src/parser.c index cb01d78..ebfe4ef 100644 --- a/src/parser.c +++ b/src/parser.c @@ -19,9 +19,13 @@ static const struct { {"decrease_gaps", dec_gaps}, {"focus_next", focus_next}, {"focus_prev", focus_prev}, + {"focus_next_mon", focus_next_mon}, + {"focus_prev_mon", focus_prev_mon}, {"increase_gaps", inc_gaps}, {"master_next", move_master_next}, {"master_previous", move_master_prev}, + {"move_next_mon", move_next_mon}, + {"move_prev_mon", move_prev_mon}, {"quit", quit}, {"reload_config", reload_config}, {"master_increase", resize_master_add}, |
