Table of Contents
Getting started
This documents describes how to do “Hello World!” from Lua inside MC.
Quick installation
First you have to install MC with Lua support, of course.
There’s a separate installation document describing installation in depth. If you're too excited to read it (and rightly so!), and if you're on a Debian-based system, then you can do with this trimmed down recipe:
$ sudo apt-get install liblua5.2-dev
$ sudo apt-get build-dep mc
$ git clone https://github.com/mooffie/mc.git
$ cd mc
$ git checkout luatip
$ ./autogen.sh
$ ./configure --prefix=$HOME/local --with-lua
$ make
$ make install
Don’t forget the --with-lua
option!
This will install mc in your $HOME/local folder (because we don’t want to overwrite the system’s MC, although you're free to do that if you wish).
(If anything goes wrong, see the full installation document.)
Writing your first Lua script
Let’s write a “Hello World” program.
Where are scripts stored?
When MC starts it executes all the Lua scripts found in a certain folder within your home. This is where you may put your own scripts. We will often call this folder “user Lua folder”, and to the files within we'll sometimes call “startup scripts”.
To discover the location of this folder, run MC with the -F option:
$ $HOME/local/bin/mc -F
Here’s an example output for this command:
Root directory: /home/mooffie [System data] Config directory: /usr/etc/mc/ Data directory: /usr/share/mc/ File extension handlers: /usr/libexec/mc/ext.d/ VFS plugins and scripts: /usr/libexec/mc/ extfs.d: /usr/libexec/mc/extfs.d/ fish: /usr/libexec/mc/fish/ Lua scripts: /usr/libexec/mc/lua-0.3/ [User data] Config directory: /home/mooffie/.config/mc/ Data directory: /home/mooffie/.local/share/mc/ skins: /home/mooffie/.local/share/mc/skins/ extfs.d: /home/mooffie/.local/share/mc/extfs.d/ fish: /home/mooffie/.local/share/mc/fish/ mcedit macros: /home/mooffie/.local/share/mc/mc.macros mcedit external macros: /home/mooffie/.local/share/mc/mcedit/macros.d/macro.* Lua scripts: /home/mooffie/.local/share/mc/lua-0.3/ Cache directory: /home/mooffie/.cache/mc/
(Your output will be different, especially since we instructed you to
use --prefix=$HOME/local
when configuring.)
Note the two folders intended for “Lua scripts”. One, under [System data], is system-global: it contains the implementation of built-in modules, and you don’t normally have write permission there. The other, under [User data], is the folder intended for the user, for you, to store your own scripts.
In the above example the user folder is ~/.local/share/mc/lua-0.3/.
Let’s create this folder and place in it a file containing:
print("Hello World!")
The name you pick for this file doesn’t matter (as long as it has a “.lua” extension and doesn’t start with a dot). Let’s name it “hello.lua”.
Now restart MC.
Nothing too exciting seems to have happened, has it? Press C-o
to
switch to the shell. Voila! You can see our “Hello World!” there.
Hurrey! (Note: You wouldn't normally use print().)
Let’s have a more exciting exercise. Add the following to hello.lua:
keymap.bind("C-q", function() alert("Hello World!") end)
This will bind the C-q
key (Control q) to a function that popups a
“Hello World!” message. Restart MC, or, better,
restart Lua only, and press C-q
.
What next?
You can play with the sample applications.
You can learn more about how to extend MC.