Notices


Reply
Thread Tools
Posts: 13 | Thanked: 86 times | Joined on Nov 2012
#1
Update 2016-09-20:
Emacs 25.1 is now out, and a new package, emacs25 is in the repository (it conflicts with emacs24, which will be automatically removed if you install this new version).

Some tips:
  • If you are using the default hardware keyboard layout, then it is highly recommended that you remap the keys to allow you to use Emacs effectively (you'll need to add the Esc key to the layout at least, which can then be used as the Meta modifier). As an example, I map Fn+Backspace to Escape and Fn+Return to Tab:
    Code:
    key <BKSP>  { [ BackSpace, Delete, Escape, Escape ] };
    key <RTRN>  { [ KP_Enter, KP_Enter, Tab, Tab ] };
    Use the following as a guide to customize your layout: Guide to remapping keyboard
  • To make better use of the limited screen space, I've set the menu bar and tool bar to hide on startup. If you want them, add these lines to your .emacs:
    (menu-bar-mode 1)
    (tool-bar-mode 1)
  • To switch to fullscreen mode, call the function (toggle-frame-fullscreen) (mapped to <f11> by default).
---Original announcement---
I had compiled Emacs so that I could run it on an N900, and thought of sharing the results by uploading the package, which is now in the extras-devel repository (from which Emacs was conspicuously absent until now!). It is the current stable release (24.4 [updated 2014-11-13]), and split into two packages, emacs24 and emacs24-el (optional package if you also want the elisp sources). I've made only minimal changes over the upstream version to adapt it to the Maemo environment, and I encourage you to test it and see if it works for you.

I'll update this post upon receiving further feedback. Happy testing!
---

Last edited by mtvoid; 2016-09-20 at 15:09. Reason: New emacs25 package
 

The Following 23 Users Say Thank You to mtvoid For This Useful Post:
Posts: 1,808 | Thanked: 4,272 times | Joined on Feb 2011 @ Germany
#2
Nice. Just installed it and played a bit with it. I was however expecting a non-graphical version (emacs-nox?).

Would it be too much to ask you to package that up as well?
 

The Following User Says Thank You to reinob For This Useful Post:
Posts: 13 | Thanked: 86 times | Joined on Nov 2012
#3
Originally Posted by reinob View Post
Nice. Just installed it and played a bit with it. I was however expecting a non-graphical version (emacs-nox?).

Would it be too much to ask you to package that up as well?
Well, you can always launch it within a terminal as "emacs -nw", then you'll get the console-based version!
 

The Following 3 Users Say Thank You to mtvoid For This Useful Post:
www.rzr.online.fr's Avatar
Posts: 1,348 | Thanked: 1,863 times | Joined on Jan 2009 @ fr/35/rennes
#4
does it depends on hildon ? if not it would be a good challenge to port it to harmattan, ... for now i use zile and redak
__________________
Current obsession:

https://purl.org/rzr/abandonware

Please help to list all maemo existing apps :

https://github.com/abandonware/aband...ment-578143760

https://wiki.maemo.org/Apps#

I am looking for " 4 inch TFT LCD display screen " for Nokia n950 HandSet

http://rzr.online.fr/q/lcd


Also, I need online storage to archive files :

http://db.tt/gn5Qffd6#

https://my.pcloud.com/#page=register...e=g8ikZmcfEJy#
 

The Following User Says Thank You to www.rzr.online.fr For This Useful Post:
Posts: 13 | Thanked: 86 times | Joined on Nov 2012
#5
Originally Posted by www.rzr.online.fr View Post
does it depends on hildon ? if not it would be a good challenge to port it to harmattan, ... for now i use zile and redak
It links to GTK+ and related libraries, but it does not have any Hildon-specific dependencies. I don't know if it will compile for harmattan; maybe with an alternate toolkit or without X support.
 

The Following User Says Thank You to mtvoid For This Useful Post:
Posts: 1,808 | Thanked: 4,272 times | Joined on Feb 2011 @ Germany
#6
Originally Posted by mtvoid View Post
Well, you can always launch it within a terminal as "emacs -nw", then you'll get the console-based version!
/me feeling incredibly stupid. Thanks for the slap.
 

The Following User Says Thank You to reinob For This Useful Post:
www.rzr.online.fr's Avatar
Posts: 1,348 | Thanked: 1,863 times | Joined on Jan 2009 @ fr/35/rennes
#7
Originally Posted by mtvoid View Post
It links to GTK+ and related libraries, but it does not have any Hildon-specific dependencies. I don't know if it will compile for harmattan; maybe with an alternate toolkit or without X support.
well we built gtk on harmattan but did not test much ... are your sources published ? link to dsc or git would be welcome ....
__________________
Current obsession:

https://purl.org/rzr/abandonware

Please help to list all maemo existing apps :

https://github.com/abandonware/aband...ment-578143760

https://wiki.maemo.org/Apps#

I am looking for " 4 inch TFT LCD display screen " for Nokia n950 HandSet

http://rzr.online.fr/q/lcd


Also, I need online storage to archive files :

http://db.tt/gn5Qffd6#

https://my.pcloud.com/#page=register...e=g8ikZmcfEJy#
 

The Following User Says Thank You to www.rzr.online.fr For This Useful Post:
Posts: 13 | Thanked: 86 times | Joined on Nov 2012
#8
Originally Posted by www.rzr.online.fr View Post
well we built gtk on harmattan but did not test much ... are your sources published ? link to dsc or git would be welcome ....
You can download the sources from the package page: http://maemo.org/packages/source/vie...macs24/24.2-1/

I did not really have to make any modifications to the source for it to compile under scratchbox for fremantle. You can give it a try with harmattan.
 

The Following 3 Users Say Thank You to mtvoid For This Useful Post:
Posts: 17 | Thanked: 2 times | Joined on Aug 2010
#9
Hello,
I just installed it, works fine but the menus go some strange background.

How can I run my program in it?
If I create .C file, how can I run it to test how it works?
in original emacs I use 'gcc file.c' then I do './a.exe' to run
How can I do it here?

Thanks.
 

The Following User Says Thank You to dfdfdf For This Useful Post:
Posts: 13 | Thanked: 86 times | Joined on Nov 2012
#10
Originally Posted by dfdfdf View Post
Hello,
I just installed it, works fine but the menus go some strange background.
I have noticed some visual glitches with some GUI elements. I personally keep the tool bar and menu bar hidden (you can toggle with M-x tool-bar-mode and M-x menu-bar-mode)

How can I run my program in it?
If I create .C file, how can I run it to test how it works?
in original emacs I use 'gcc file.c' then I do './a.exe' to run
How can I do it here?
It should work pretty much the same way (provided you have gcc installed of course). Just invoke gcc via M-x compile.
 

The Following 2 Users Say Thank You to mtvoid For This Useful Post:
Reply

Tags
emacs, fremantle

Thread Tools

 
Forum Jump


All times are GMT. The time now is 08:59.