aboutsummaryrefslogtreecommitdiff
path: root/vis-lua.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-04-25 08:48:59 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-04-26 08:41:17 +0200
commit064f2d7ac6b9c9efb56ffba0fa4971619f95f022 (patch)
treef8ea4e1266f72f4f142e09d7cd59dbab958ea779 /vis-lua.c
parent205be8532390e588bef839edc0cea2cc36b096a7 (diff)
downloadvis-064f2d7ac6b9c9efb56ffba0fa4971619f95f022.tar.gz
vis-064f2d7ac6b9c9efb56ffba0fa4971619f95f022.tar.xz
vis-lua: add file.modified property
Diffstat (limited to 'vis-lua.c')
-rw-r--r--vis-lua.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/vis-lua.c b/vis-lua.c
index 50d0596..3a68fd9 100644
--- a/vis-lua.c
+++ b/vis-lua.c
@@ -822,6 +822,11 @@ static int file_index(lua_State *L) {
lua_pushunsigned(L, text_size(file->text));
return 1;
}
+
+ if (strcmp(key, "modified") == 0) {
+ lua_pushboolean(L, text_modified(file->text));
+ return 1;
+ }
}
return index_common(L);