2024-04-26 19:53:13 +02:00
|
|
|
vim9script
|
|
|
|
|
|
|
|
|
|
# Maintainer: Maxim Kim <habamax@gmail.com>
|
2025-03-21 18:02:56 +01:00
|
|
|
# Last Update: 2025 Mar 21
|
2024-04-26 19:53:13 +02:00
|
|
|
|
|
|
|
|
import autoload 'comment.vim'
|
2025-03-21 18:02:56 +01:00
|
|
|
|
2024-04-26 19:53:13 +02:00
|
|
|
nnoremap <silent> <expr> gc comment.Toggle()
|
|
|
|
|
xnoremap <silent> <expr> gc comment.Toggle()
|
|
|
|
|
nnoremap <silent> <expr> gcc comment.Toggle() .. '_'
|
2025-03-21 18:02:56 +01:00
|
|
|
|
|
|
|
|
onoremap <silent>ic <scriptcmd>comment.ObjComment(v:true)<CR>
|
|
|
|
|
onoremap <silent>ac <scriptcmd>comment.ObjComment(v:false)<CR>
|
|
|
|
|
xnoremap <silent>ic <esc><scriptcmd>comment.ObjComment(v:true)<CR>
|
|
|
|
|
xnoremap <silent>ac <esc><scriptcmd>comment.ObjComment(v:false)<CR>
|