diff options
author | June McEnroe <june@causal.agency> | 2019-12-31 16:33:25 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-12-31 16:33:25 -0500 |
commit | 9f93e456bcc21f50187b046488b9d98a828ab4bd (patch) | |
tree | f05cb09139e327cc6d20efa95eb9d0b542517c9a | |
parent | Rewrite scoop(1) argument descriptions (diff) | |
download | litterbox-9f93e456bcc21f50187b046488b9d98a828ab4bd.tar.gz litterbox-9f93e456bcc21f50187b046488b9d98a828ab4bd.zip |
Use standout mode for highlighting
Diffstat (limited to '')
-rw-r--r-- | scoop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scoop.c b/scoop.c index ad8be5f..6a5d001 100644 --- a/scoop.c +++ b/scoop.c @@ -268,8 +268,8 @@ int main(int argc, char *argv[]) { dbBindInt(stmt, ":limit", limit); if (tty) { - dbBindText(stmt, ":open", "\33[33m"); - dbBindText(stmt, ":close", "\33[m"); + dbBindText(stmt, ":open", "\33[7m"); + dbBindText(stmt, ":close", "\33[27m"); } else { // XXX: If you leave these NULL fts5 segfaults... dbBindText(stmt, ":open", ""); |