cloudcmd/client/modules/edit-file-vim.js
2023-07-09 12:43:24 +03:00

45 lines
806 B
JavaScript

'use strict';
/* global CloudCmd */
CloudCmd.EditFileVim = exports;
const Events = require('../dom/events');
const {Key} = CloudCmd;
const ConfigView = {
bindKeys: false,
beforeClose: () => {
Events.rmKey(listener);
CloudCmd.EditFile.isChanged();
},
};
module.exports.init = async () => {
await CloudCmd.EditFile();
};
module.exports.show = async () => {
Events.addKey(listener);
const editFile = await CloudCmd.EditFile.show(ConfigView);
editFile
.getEditor()
.setKeyMap('vim');
};
module.exports.hide = hide;
function hide() {
CloudCmd.Edit.hide();
}
function listener(event) {
const {keyCode, shiftKey} = event;
if (shiftKey && keyCode === Key.ESC) {
event.preventDefault();
hide();
}
}