diff --git a/client/modules/konsole.js b/client/modules/konsole.js index 2269fd51..574d8070 100644 --- a/client/modules/konsole.js +++ b/client/modules/konsole.js @@ -109,10 +109,10 @@ function ConsoleProto() { konsole.addShortCuts({ 'P': () => { - const command = Console.getPromptText(); + const command = konsole.getPromptText(); const path = DOM.getCurrentDirPath(); - Console.setPromptText(command + path); + konsole.setPromptText(command + path); } }); }