remove unnecessary comments

This commit is contained in:
dtricks
2025-10-04 14:49:56 +02:00
committed by dtricks
parent 30a2e14959
commit a79fc3db5b
-5
View File
@@ -45,7 +45,6 @@ try {
console.error('Vim gc mapping failed', e);
}
// :q to pause/stop
// :q to pause/stop
Vim.defineEx('quit', 'q', (cm) => {
try {
@@ -71,7 +70,6 @@ try {
}
});
// :w to evaluate
// :w to evaluate
Vim.defineEx('write', 'w', (cm) => {
const view = cm?.view || cm; // CM6 Vim passes either an object with view or the view itself
@@ -122,9 +120,6 @@ try {
const keymaps = {
vim,
// Add extra Vim keymap for gc to toggle line comment
// We will include a Vim-specific keymap that calls the CM command
// respecting the current selection.
emacs,
codemirror: () => keymap.of(defaultKeymap),
vscode: vscodeExtension,