1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-05 14:35:47 +01:00

Add Player mode :pmap commands.

This commit is contained in:
Doug Kearns
2009-03-25 04:13:15 +11:00
parent 98406ff211
commit 8c495eb7ba

View File

@@ -257,8 +257,11 @@ function Mappings() //{{{
addMapCommands("", [modes.NORMAL], "");
addMapCommands("c", [modes.COMMAND_LINE], "command line");
addMapCommands("i", [modes.INSERT, modes.TEXTAREA], "insert");
// FIXME
if (liberator.has("mail"))
addMapCommands("m", [modes.MESSAGE], "message");
if (liberator.has("player"))
addMapCommands("p", [modes.PLAYER], "player");
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// PUBLIC SECTION //////////////////////////////////////////