vim9script # Maintainer: Maxim Kim # Last Update: 2025 Mar 21 import autoload 'comment.vim' nnoremap gc comment.Toggle() xnoremap gc comment.Toggle() nnoremap gcc comment.Toggle() .. '_' onoremap ic comment.ObjComment(v:true) onoremap ac comment.ObjComment(v:false) xnoremap ic comment.ObjComment(v:true) xnoremap ac comment.ObjComment(v:false)