• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-

lang/H27-Apr-2021-1,2641,258

misc/H03-May-2022-

mpdm/H03-May-2022-20,14412,128

mpsl/H03-May-2022-8,1725,068

po/H27-Apr-2021-8,6146,571

syntax/H27-Apr-2021-993907

tools/H27-Apr-2021-344249

.gitignoreH A D27-Apr-2021212 2221

LICENSEH A D27-Apr-20211.1 KiB84

READMEH A D27-Apr-20211.9 KiB4941

RELEASE_NOTESH A D27-Apr-202110.7 KiB359191

TODOH A D27-Apr-2021210 74

VERSIONH A D27-Apr-202123 21

build.shH A D27-Apr-20212.8 KiB139103

config.shH A D03-May-202221.8 KiB794630

local-build.shH A D27-Apr-20211 KiB3020

makefile.dependH A D27-Apr-2021652 98

makefile.inH A D03-May-20226 KiB199151

metainfo.xmlH A D27-Apr-20213.3 KiB7668

minimum-profit.desktopH A D27-Apr-2021304 1312

mkinstalldirsH A D27-Apr-20211.9 KiB11285

mp.hH A D27-Apr-2021683 3418

mp.issH A D27-Apr-20211.4 KiB3732

mp.regH A D27-Apr-2021670 3020

mp_build.mpslH A D27-Apr-20213.4 KiB159117

mp_clipboard.mpslH A D27-Apr-202110 KiB432347

mp_core.cH A D27-Apr-202139.2 KiB1,6081,032

mp_core.mpslH A D27-Apr-202126.6 KiB1,011847

mp_crypt.mpslH A D27-Apr-20214.3 KiB215164

mp_dir.mpslH A D27-Apr-20212.4 KiB11277

mp_drv.mpslH A D27-Apr-20212 KiB7052

mp_edit.mpslH A D27-Apr-202123.6 KiB936726

mp_file.mpslH A D27-Apr-202123.4 KiB1,000758

mp_hex.mpslH A D27-Apr-20215 KiB188151

mp_macro.mpslH A D27-Apr-20211.9 KiB8663

mp_misc.mpslH A D27-Apr-20218.9 KiB383287

mp_move.mpslH A D27-Apr-202116 KiB650506

mp_mptxt.mpslH A D27-Apr-202111.1 KiB373310

mp_res.rcH A D27-Apr-2021205 137

mp_search.mpslH A D27-Apr-202115 KiB638500

mp_session.mpslH A D27-Apr-20212.4 KiB11379

mp_spell.mpslH A D27-Apr-20216 KiB275205

mp_syntax.mpslH A D27-Apr-20216.3 KiB297226

mp_tags.mpslH A D27-Apr-20216.6 KiB273204

mp_templates.mpslH A D27-Apr-20213.1 KiB138104

mp_templates.sampleH A D27-Apr-20213.1 KiB8271

mp_toys.mpslH A D27-Apr-202115.1 KiB612495

mp_tui.mpslH A D27-Apr-202119.1 KiB845665

mp_vcs.mpslH A D27-Apr-20216 KiB201164

mp_writing.mpslH A D27-Apr-20214.6 KiB174137

mpv_ansi.cH A D27-Apr-202119.7 KiB864570

mpv_curses.cH A D27-Apr-202120 KiB921715

mpv_gtk.cH A D27-Apr-202168.1 KiB2,6222,012

mpv_kde4.cppH A D27-Apr-202111.2 KiB478315

mpv_qk_common.cppH A D27-Apr-202127.1 KiB1,157906

mpv_qt4.cppH A D03-May-202214.5 KiB629416

mpv_win32.cH A D27-Apr-202145.5 KiB1,9291,412

mpv_win32c.cH A D27-Apr-202114.2 KiB598441

ms-windows-build.shH A D27-Apr-2021550 2917

README

1Minimum Profit README
2=====================
3
4 Minimum Profit - A Text Editor
5 ttcdt <dev@triptico.com> et al.
6 Home Page: https://triptico.com/software/mp.html
7
8Minimum Profit (mp) is a text editor for programmers. Among its features
9are the following:
10
11 - Fully scriptable using a C-like scripting language.
12 - Unlimited undo levels.
13 - Complete Unicode support.
14 - Multiple files can be edited at the same time and blocks copied
15   and pasted among them.
16 - Syntax highlighting for many popular languages / file formats: C, C++,
17   Perl, Shell Scripts, Ruby, Php, Python, HTML...
18 - Creative use of tags: tags created by the external utility _ctags_
19   are used to move instantaneously to functions or variables inside
20   your current source tree. Tags are visually highlighted (underlined),
21   and symbol completion can be triggered to avoid typing your own function
22   names over and over.
23 - Intelligent help system: pressing F1 over any word of a text being edited
24   triggers the underlying system help (calling _man_ when editing C or Shell
25   files, _perldoc_ with Perl, _ri_ on Ruby...).
26 - Understandable interface: drop-down menus, reasonable default key bindings.
27 - Configurable keys, menus and colors.
28 - Text templates can be easily defined / accessed.
29 - Multiplatform: Unix/Linux ANSI and Curses, Qt4/Qt5, GTK+, KDE4, MS Windows
30   (both windowed and console).
31 - Automatic indentation, word wrapping, internal _grep_, learning /
32   repeating functions.
33 - Spellchecking support (via the ispell package).
34 - Multilingual.
35 - Password-protected, encrypted text files (using the ARCFOUR algorithm).
36 - It helps you abandon vi, emacs and other six-legged freaks definitely.
37
38This software has been released into the public domain. See file LICENSE
39for details.
40
41Compiling & Installing from source
42----------------------------------
43
44	 $ ./config.sh
45	 $ make
46	 # make install
47
48See the included documentation for more information.
49