]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(comment): fix syntax error
authorKonfekt <Konfekt@users.noreply.github.com>
Mon, 30 Sep 2024 17:30:34 +0000 (19:30 +0200)
committerChristian Brabandt <cb@256bit.org>
Mon, 30 Sep 2024 17:30:34 +0000 (19:30 +0200)
fixes: #15767
closes: #15770

Signed-off-by: Konfekt <Konfekt@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/pack/dist/opt/comment/autoload/comment.vim
runtime/pack/dist/opt/comment/doc/comment.txt

index ed3534b84d4f0494c7b7879bd1a6f8507575f413..6617136e638e4a6f7c02168559218b3ba3620289 100644 (file)
@@ -1,7 +1,7 @@
 vim9script
 
 # Maintainer: Maxim Kim <habamax@gmail.com>
-# Last Update: 2024-09-24
+# Last Update: 2024-09-30
 #
 # Toggle comments
 # Usage:
@@ -24,7 +24,7 @@ export def Toggle(...args: list<string>): string
     var first_col = indent(lnum1)
     var start_col = getpos("'[")[2]
     if len(cms_l) == 1 && lnum1 == lnum2 && first_col < start_col
-        var line_start = getline(lnum1)[0 : max(0, start_col - 2)]
+        var line_start = getline(lnum1)[0 : max([0, start_col - 2])]
         var line_end = getline(lnum1)[start_col - 1 : -1]
         line_end = line_end =~# $'^\s*{cms_l[0]}' ?
                     \ substitute(line_end, $'^\s*\zs{cms_l[0]}', '', '') :
index 4d791e56cbdb08d9bede0a504ac8bcfc207db0fb..af1251a07b1c4cb656df830468f746fbd3f66fa9 100644 (file)
@@ -1,4 +1,4 @@
-*comment.txt*   For Vim version 9.1.  Last change:  2024 Sep 29
+*comment.txt*   For Vim version 9.1.  Last change:  2024 Sep 30
 
 
                  VIM REFERENCE MANUAL
@@ -27,7 +27,7 @@ To comment the rest of the line by  `gC`  whenever the filetype plugin
 supports it (that is, whenever the comment marker precedes the code) and fall
 back to `gcc` otherwise, add the following mapping to your vimrc: >
 
-       nnoremap <silent> <expr> gC comment.Toggle() .. '$'
+       nnoremap <silent> <expr> gC comment#Toggle() .. '$'
 <
 Note: using `gC` may not always result in valid comment markers depending on
 the language used.