mojo.el/README
2009-12-03 13:55:32 -08:00

64 lines
1.6 KiB
Text

Copyright (c)2008 Jonathan Arkell. (by)(nc)(sa) Some rights reserved.
2009 Sami Samhuri
Distributed under the terms of the GNU Public License v2, see LICENSE.
Authors: Jonathan Arkell <jonnay@jonnay.net>
Sami Samhuri <sami.samhuri@gmail.com>
Overview
========
Mojo.el is an Emacs package that provides interactive functions to aid
the development of webOS apps. There is a minor mode that can be
toggled with the command `mojo-mode', or enabled automatically by
setting up mode hooks in your emacs config. There's a convenience
function called mojo-setup-mode-hooks that takes one or more hook
variable names and adds mojo-maybe-enable-minor-mode to each hook.
mojo-maybe-enable-minor-mode enables mojo-mode for files under a Mojo
project root.
Latest version is available on github:
http://github.com/samsonjs/mojo.el
And usually also on Emacs Wiki:
http://emacswiki.org/emacs/MojoSdk
http://emacswiki.org/emacs/mojo.el
Installation
============
See INSTALL or mojo.el itself for instructions.
Commands
========
See COMMANDS or mojo.el itself.
Customizations
==============
Customizable options:
mojo-sdk-directory
Path to where the mojo SDK is. (default ok for windows and mac os x)
default = (case system-type
((windows-nt) "c:/progra~1/palm/sdk")
((darwin) "/opt/PalmSDK/Current")
(t ""))
mojo-project-directory
Directory where all your Mojo projects are located.
default = ""
mojo-build-directory
Directory to store packaged Mojo applications.
default = ""
mojo-debug
Run Mojo in debug mode. Assumed true while in such an early version.
default = t