##// END OF EJS Templates
Special handling for CM's vim keyboard mapping.
Special handling for CM's vim keyboard mapping.

File last commit:

r14037:c4fda88d
r14062:0d3e6110
Show More
quickhelp.js
74 lines | 2.7 KiB | application/javascript | JavascriptLexer
//----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
//============================================================================
// QuickHelp button
//============================================================================
var IPython = (function (IPython) {
"use strict";
var QuickHelp = function (selector) {
};
QuickHelp.prototype.show_keyboard_shortcuts = function () {
// toggles display of keyboard shortcut dialog
var that = this;
if ( this.shortcut_dialog ){
// if dialog is already shown, close it
$(this.shortcut_dialog).modal("toggle");
return;
}
var command_shortcuts = IPython.keyboard_manager.command_shortcuts.help();
var edit_shortcuts = IPython.keyboard_manager.edit_shortcuts.help();
var help, shortcut;
var element = $('<div/>');
// Command mode
var cmd_div = $('<div/>').addClass('clearfix').append($('<h4>Command Mode</h4>'));
element.append(cmd_div);
for (var i=0; i<command_shortcuts.length; i++) {
help = command_shortcuts[i]['help'];
shortcut = command_shortcuts[i]['shortcut'];
if (help) {
cmd_div.append($('<div>').addClass('quickhelp').
append($('<span/>').addClass('shortcut_key').html(shortcut)).
append($('<span/>').addClass('shortcut_descr').html(' : ' + help))
);
}
};
// Edit mode
var edit_div = $('<div/>').addClass('clearfix').append($('<h4>Edit Mode</h4>'));
element.append(edit_div);
for (var i=0; i<edit_shortcuts.length; i++) {
help = edit_shortcuts[i]['help'];
shortcut = edit_shortcuts[i]['shortcut'];
if (help) {
edit_div.append($('<div>').addClass('quickhelp').
append($('<span/>').addClass('shortcut_key').html(shortcut)).
append($('<span/>').addClass('shortcut_descr').html(' : ' + help))
);
}
};
this.shortcut_dialog = IPython.dialog.modal({
title : "Keyboard shortcuts",
body : element,
destroy : false,
buttons : {
Close : {}
}
});
};
// Set module variables
IPython.QuickHelp = QuickHelp;
return IPython;
}(IPython));