summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/data/data_command.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/data/data_command.lua')
-rw-r--r--plugins/data/data_command.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/data/data_command.lua b/plugins/data/data_command.lua
new file mode 100644
index 00000000000..a868b792c22
--- /dev/null
+++ b/plugins/data/data_command.lua
@@ -0,0 +1,25 @@
+local dat = {}
+local info, ver
+
+local datread = require("data/load_dat")
+datread, ver = datread.open("command.dat", nil)
+
+function dat.check(set, softlist)
+ if softlist or not datread then
+ return nil
+ end
+ local status
+ status, info = pcall(datread, "cmd", "info", set)
+ if not status or not info then
+ return nil
+ end
+ local convert = require("data/button_char")
+ info = "#jf\n" .. convert(info)
+ return "Command"
+end
+
+function dat.get()
+ return info
+end
+
+return dat