Re: Configuration file does not support #

Lifepillar <[email protected]>
Newsgroups gmane.editors.vim
Message-ID <[email protected]>
On 2024-06-27, 李坏之 <[email protected]> wrote:
> Why does an error occur when changing the comment of the vim9.1
> configuration file to #? 9.1 does not support #

Not sure I understand your question, but before `vim9script` you should
use the legacy comment symbol " (double quote). For example:

    " vim: set sw=2 ts=2 sts=0 et fdm=marker :nospell:
    " Here, legacy comments must be used
    " In general, before `vim9script`, legacy syntax is assumed

    if !has('vim9script')
      " Still legacy Vim script syntax
      echomsg 'Vim 9 script is not available')
      finish
    endif

    vim9script

    # Now, Vim 9 script syntax is assumed
    # The comment delimiter must be #

Hope this helps,
Life.


-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/v5kj3s%24vbo%241%40ciao.gmane.io.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.