The time now is Mon 23 Apr 2018, 17:39
All times are UTC - 4 |
Author |
Message |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Mon 29 Sep 2008, 07:27 Post subject:
mp Text Editor (GUI-Version) |
|
Home: http://triptico.com/software/mp.html
Version: 5.2.0
Quote: | A text editor for programmers
Features
* Fully scriptable using a C-like scripting language.
* Unlimited undo levels.
* Complete Unicode support.
* Multiple files can be edited at the same time and blocks copied and pasted among them.
* Syntax highlighting for many popular languages / file formats: C, C++, Perl, Shell Scripts, Ruby, Php, Python, HTML...
* Creative use of tags: tags created by the external utility ctags are used to move instantaneously to functions or variables inside your current source tree. Tags are visually highlighted (underlined), and symbol completion can be triggered to avoid typing your own function names over and over.
* Intelligent help system: pressing F1 over any word of a text being edited triggers the underlying system help (calling man when editing C or Shell files, perldoc with Perl, ri on Ruby, winhelp on MS Windows...).
* Understandable interface: drop-down menus, reasonable default key bindings.
* Configurable keys, menus and colors.
* Text templates can be easily defined / accessed.
* Multiplatform: Console/curses, KDE4, GTK+, MS Windows.
* Automatic indentation, word wrapping, internal grep, learning / repeating functions.
* Spellchecking support (via the ispell package).
* Multilingual.
* Password-protected, encrypted text files (using the ARCFOUR algorithm).
* It helps you abandon vi, emacs and other six-legged freaks definitely. |
This is the gtk2-Package. If you start from commandline (without x) it will open with ncurses-gui.
Starter is at 'Document' from commandline it's 'mp-5' .
Compiled and tested in 4.31.
Cheers
aragon
Description |
|
Filesize |
70.83 KB |
Viewed |
2032 Time(s) |

|
Description |
|

Download |
Filename |
mp-5.2.0.pet |
Filesize |
132.87 KB |
Downloaded |
826 Time(s) |
Description |
|

Download |
Filename |
mp_DOC-5.2.0.pet |
Filesize |
76.96 KB |
Downloaded |
672 Time(s) |
Description |
|

Download |
Filename |
mp_NLS-5.2.0.pet |
Filesize |
45.91 KB |
Downloaded |
637 Time(s) |
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
Last edited by aragon on Tue 26 Apr 2011, 15:12; edited 5 times in total
|
Back to top
|
|
 |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Mon 15 Dec 2008, 08:28 Post subject:
|
|
updated to 5.1.1, see main post.
cheers
aragon
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
|
Back to top
|
|
 |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Tue 13 Oct 2009, 05:36 Post subject:
|
|
updated to 5.1.3, see main post.
aragon
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
|
Back to top
|
|
 |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Sun 24 Apr 2011, 16:49 Post subject:
|
|
uploaded actual version to first post.
aragon
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
|
Back to top
|
|
 |
technosaurus

Joined: 18 May 2008 Posts: 4787 Location: Kingwood, TX
|
Posted: Mon 25 Apr 2011, 09:01 Post subject:
|
|
@aragon - I sent Angel a couple of patches prior to this release that may not be integrated to mainline due to being non-standard-gui:
1. moving notebook tabs up to the menu line.
2. showing the full list of open files on right click on any tab let me know if you are interested in either one
_________________ Check out my github repositories. I may eventually get around to updating my blogspot.
|
Back to top
|
|
 |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Tue 26 Apr 2011, 02:22 Post subject:
|
|
hi technosaurus,
yes, please post your patches.
aragon
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
|
Back to top
|
|
 |
technosaurus

Joined: 18 May 2008 Posts: 4787 Location: Kingwood, TX
|
Posted: Tue 26 Apr 2011, 10:47 Post subject:
|
|
---mpv_gtk.c.old 2010-08-25 15:45:13.000000000 +0800 +++ mpv_gtk.c 2010-11-10 21:41:52.123291099 +0800 @@ -1741,9 +1741,10 @@ gtk_container_add(GTK_CONTAINER(window), vbox); build_menu(); -gtk_box_pack_start(GTK_BOX(vbox), menu_bar, FALSE, FALSE, 0); --gtk_box_pack_start(GTK_BOX(vbox), file_tabs, FALSE, FALSE, 0); + hbox = gtk_hbox_new(FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox), menu_bar, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(hbox), file_tabs, TRUE, TRUE, 0); /* horizontal box holding the text and the scrollbar */ hbox = gtk_hbox_new(FALSE, 2);
another cheapy so that right click brings up a list of open files: //moving them to the top does make less tabs fit //this lets you get at that 30th file faster, easier -saves ~25clicks
gtk_notebook_popup_enable(GTK_ NOTEBOOK(file_tabs));
EDIT sorry for the formatting issues, posting from my phone
_________________ Check out my github repositories. I may eventually get around to updating my blogspot.
|
Back to top
|
|
 |
sc0ttman

Joined: 16 Sep 2009 Posts: 2572 Location: UK
|
Posted: Tue 26 Apr 2011, 11:03 Post subject:
|
|
works brilliantly in pup4, thanks! (I think I'm using a version including the patches posted above, as I seem to have tabs, up at the top, next to the menu items.. right clicking on a tab also shows the list of all files open.. NICE!)
also, now the sources have been changed (right?), dont you need to post the sources somewhere too?
_________________ Akita Linux, VLC-GTK, Pup Search, Pup File Search
|
Back to top
|
|
 |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Tue 26 Apr 2011, 12:08 Post subject:
|
|
@techno: thanks, will have a look.
@scottsman: me actually not, my package is unpatched (atm)...
Aragon
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
|
Back to top
|
|
 |
aragon
Joined: 15 Oct 2007 Posts: 1698 Location: Germany
|
Posted: Tue 26 Apr 2011, 15:13 Post subject:
|
|
@techno: please look at the updated pic in post 1 (it's from my actual package). I guess your changes have been accepted...
aragon
_________________ PUPPY SEARCH: http://wellminded.com/puppy/pupsearch.html
|
Back to top
|
|
 |
technosaurus

Joined: 18 May 2008 Posts: 4787 Location: Kingwood, TX
|
Posted: Tue 26 Apr 2011, 17:14 Post subject:
|
|
cool, ... I saw the other pic and figured it wasn't applied
_________________ Check out my github repositories. I may eventually get around to updating my blogspot.
|
Back to top
|
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|