diff options
author | portix <none@none> | 2012-03-27 21:48:10 +0200 |
---|---|---|
committer | portix <none@none> | 2012-03-27 21:48:10 +0200 |
commit | 8e751b3e67ea7c1c979452e537eb27bd8cb3a48d (patch) | |
tree | 024be0365495089388a18c180a574c70fc055df8 /src/dwb.h | |
parent | 77fb8c8176299fdc3244c1db499db926003ca05f (diff) | |
download | dwb-8e751b3e67ea7c1c979452e537eb27bd8cb3a48d.zip |
Commandline property CP_NEEDS_ARG for commands that need an argument, otherwise the commandline may not be cleaned
Diffstat (limited to 'src/dwb.h')
-rw-r--r-- | src/dwb.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -445,6 +445,7 @@ typedef enum { CP_OVERRIDE_INSERT = 1<<5, CP_OVERRIDE_ENTRY = 1<<6, CP_OVERRIDE_ALL = 1<<7, + CP_NEEDS_ARG = 1<<8, } CommandProperty; #define CP_OVERRIDE (CP_OVERRIDE_INSERT | CP_OVERRIDE_ENTRY | CP_OVERRIDE_ALL) |