diff --git a/halyde/apps/helpdb/default.txt b/halyde/apps/helpdb/default.txt index 051f919..4ab965a 100644 --- a/halyde/apps/helpdb/default.txt +++ b/halyde/apps/helpdb/default.txt @@ -10,6 +10,7 @@ All current Halyde shell commands: lua Starts the Lua shell. mv Moves/renames a file. rm Deletes a file. + edit Opens the text editor. You can get additional information on any app or command by running: help [COMMAND] diff --git a/halyde/apps/helpdb/edit.txt b/halyde/apps/helpdb/edit.txt new file mode 100644 index 0000000..407e373 --- /dev/null +++ b/halyde/apps/helpdb/edit.txt @@ -0,0 +1,8 @@ +Usage: edit [PATH] +Opens a file with the text editor, or a new blank file if not specified. + + PATH* Specifies the file to be opened. + +Examples: + edit Opens a new blank file in the text editor. + edit /LICENSE Opens /LICENSE in the text editor. diff --git a/halyde/core/boot.lua b/halyde/core/boot.lua index 9d114fc..aae57b0 100644 --- a/halyde/core/boot.lua +++ b/halyde/core/boot.lua @@ -1,7 +1,7 @@ local loadfile = ... local filesystem = loadfile("/halyde/lib/filesystem.lua")(loadfile) -_G._OSVERSION = "Halyde 0.10.0" +_G._OSVERSION = "Halyde 0.10.1" function _G.import(module, ...) local args = table.pack(...)