howm
howm
op.h
Go to the documentation of this file.
1 #ifndef OP_H
2 #define OP_H
3 
15 
16 void (*operator_func)(const unsigned int type, unsigned int cnt);
17 
18 void op_kill(const unsigned int type, unsigned int cnt);
19 void op_move_up(const unsigned int type, unsigned int cnt);
20 void op_move_down(const unsigned int type, unsigned int cnt);
21 void op_focus_down(const unsigned int type, unsigned int cnt);
22 void op_focus_up(const unsigned int type, unsigned int cnt);
23 void op_shrink_gaps(const unsigned int type, unsigned int cnt);
24 void op_grow_gaps(const unsigned int type, unsigned int cnt);
25 void op_cut(const unsigned int type, unsigned int cnt);
26 void count(const unsigned int cnt);
27 void motion(char *target);
28 
29 #endif
motions
Definition: op.h:14
void motion(char *target)
Tell howm which motion is to be performed.
Definition: op.c:286
void count(const unsigned int cnt)
Set the current count for the current operator.
Definition: op.c:268
void op_focus_down(const unsigned int type, unsigned int cnt)
Operator function to move the current focus down.
Definition: op.c:113
Definition: op.h:14
void op_focus_up(const unsigned int type, unsigned int cnt)
Operator function to move the current focus up.
Definition: op.c:92
void op_move_down(const unsigned int type, unsigned int cnt)
Move client/s down.
Definition: op.c:61
void op_move_up(const unsigned int type, unsigned int cnt)
Move client/s up.
Definition: op.c:77
void op_grow_gaps(const unsigned int type, unsigned int cnt)
An operator to grow the gaps of either workspaces or clients by conf.op_gap_size. ...
Definition: op.c:139
void op_kill(const unsigned int type, unsigned int cnt)
An operator that kills an arbitrary amount of clients or workspaces.
Definition: op.c:35
void op_cut(const unsigned int type, unsigned int cnt)
Cut one or more clients and add them onto howm's delete register stack (if there is space)...
Definition: op.c:189
Definition: op.h:14
void op_shrink_gaps(const unsigned int type, unsigned int cnt)
An operator to shrink the gaps of either workspaces or clients by conf.op_gap_size.
Definition: op.c:256
void(* operator_func)(const unsigned int type, unsigned int cnt)
Definition: op.h:16