From 51fa7a32ecc2db21d9536b9ccf84de1ea6e9201a Mon Sep 17 00:00:00 2001 From: Pedro Castro Date: Sat, 8 Aug 2026 15:31:09 -0300 Subject: [PATCH] Remove echo message Close #82 --- indent/rescript.vim | 2 -- 1 file changed, 2 deletions(-) diff --git a/indent/rescript.vim b/indent/rescript.vim index 4b9a152..57317aa 100644 --- a/indent/rescript.vim +++ b/indent/rescript.vim @@ -39,8 +39,6 @@ function! RescriptIndent(lnum) return 0 endif - echom getline(l:prevlnum) - " Prev and current line with line-comments removed let l:prevl = substitute(getline(l:prevlnum), '//.*$', '', '') let l:thisl = substitute(getline(a:lnum), '//.*$', '', '')