aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-26 01:05:18 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-26 01:05:18 -0400
commitea162fb1691c2809939bd33e940d9358bf691e95 (patch)
tree81baa72f97ca982d623368aca2ac65883dc4172d /src/screen.h
parente50f6689851e918bce9a11fe9658da3e05866d04 (diff)
downloadrunes-ea162fb1691c2809939bd33e940d9358bf691e95.tar.gz
runes-ea162fb1691c2809939bd33e940d9358bf691e95.zip
track if rows were wrapped or not
this will be useful when copying things to the clipboard is implemented, to determine whether lines should be joined with a newline or not
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screen.h b/src/screen.h
index deddb81..90141a9 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -55,6 +55,7 @@ struct runes_cell {
struct runes_row {
struct runes_cell *cells;
unsigned char dirty: 1;
+ unsigned char wrapped: 1;
};
struct runes_screen {