4 A Programmer's Text Editor
6 Version Control System support
8 Copyright (C) 1991-2011 Angel Ortega <angel@triptico.com>
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License
12 as published by the Free Software Foundation; either version 2
13 of the License, or (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 http://www.triptico.com
33 check: [ '.git', '../.git', '../../.git' ],
59 /** editor actions **/
61 mp.actions['vcs'] = sub (d) {
65 foreach (d, n.check) {
66 if (stat(d) != NULL) {
77 mp.alert(L("This directory is not under a supported version control system"));
84 label: sprintf(L("Available %s commands"), v.id),
95 local cmd = sprintf(l[mp.vcs_target], d.name);
97 local log = mp.open(sprintf(L("<%s output>"), cmd));
99 log.txt.lines = [ '' ];
102 mp.actions.exec_command(log, cmd);
103 mp.detect_syntax(log);
113 /** default key bindings **/
115 mp.keycodes['ctrl-p'] = 'vcs';
117 /** action descriptions **/
119 mp.keycodes['vcs'] = LL("Open the Version Control submenu");