Re: C.VIM Syntax file update

2025-07-13 Fir de Conversatie shane.qian
> "What is a PR?" and "How do I do it?" He means 'pull request' in 'Github', or actually you should be Ok to go with 'git patch' workflow as well; just send your code patch mail to him. FYI. check ':h develop.txt' -- shane.xb.qian -- -- You received this message from the "vim_dev" maillist. D

Re: Commit: patch 9.1.1222: using wrong length for last inserted string

2025-03-21 Fir de Conversatie shane.qian
> Hi, > > I would argue that: > > - if (insert->length > 0) > - { > - // remove trailing ESC > - --insert->length; > - if (s[insert->length] == ESC) > - s[insert->length] = NUL; > - } > + if (insert.length > 0 && s[insert.length - 1] == ESC) // remove trailing > ESC > + s[insert.length - 1] = NUL

Re: Commit: runtime(doc): clarify buffer deletion on popup_close()

2025-01-08 Fir de Conversatie shane.qian
On 25/01/08 08:44PM, Christian Brabandt wrote: > > On Wed, 08 Jan 2025, shane qian wrote: > > > Hi, > > sorry cannot open google link here unfortunately. > > what I means: a buffer cannot be created without a window existed and > > displayed it in a popup, or if had, means that window had been

Re: Commit: runtime(doc): clarify buffer deletion on popup_close()

2025-01-08 Fir de Conversatie shane.qian
> Reported-by: Lifepillar > Signed-off-by: Christian Brabandt > > popup_close({id} [, {result}]) *popup_close()* > - Close popup {id}. The window and the associated buffer will > - be deleted. > + Close popup {id}. The w

E254: Cannot allocate color 235

2024-08-27 Fir de Conversatie shane.qian
sometime it happened such E254 err at my v9.1.698 (linux xfce-term xterm-256color) Error detected while processing ColorSchemePre Autocommands for "*": E254: Cannot allocate color 235 ``` hi clear difftext hi difftext cterm=bold ctermbg=red ctermfg=235 au colorschemepr

Re: Forwarding of Issues and PRs from GitHub to the vim_dev List

2024-05-30 Fir de Conversatie shane.qian
> I think the easiest way to follow Vim Development from Github is, if you > got to the Vim Repository page on Github https://github.com/vim/vim and > you click on the little watch button. Then you receive notifications for > all PRs, Issues and activities there in. Of course this requires to ha

Re: Forwarding of Issues and PRs from GitHub to the vim_dev List

2024-05-29 Fir de Conversatie shane.qian
> I follow Vim development activity through the vim_dev mailing list > rather than at https://github.com/vim/vim/. That generally works > well, except that I seem to miss the original postings of some > issues and/or PRs. I see responses, but not the original postings, > so I'm potentially missin

Re: CSS syntax suddenly produces lots of errors

2024-04-21 Fir de Conversatie shane.qian
> Suddenly when opening a CSS file in Vim (or when opening an HTML file, > because HTML syntax invokes CSS syntax), I see a huge lot of errors. > This is at patchlevel 9.1.296 or earlier. I didn't see it a few days > ago but I'm not sure at which changeset it appeared. > >>> >

Re: Commit: patch 9.1.0342: tests: test_taglist fails when 'helplang' contains non-english

2024-04-16 Fir de Conversatie shane.qian
> patch 9.1.0342: tests: test_taglist fails when 'helplang' contains non-english > > Commit: > https://github.com/vim/vim/commit/ae7e61c928b4adaa220e59ecebc75ef630674207 > Author: Julio B > Date: Tue Apr 16 22:55:04 2024 +0200 > > patch 9.1.0342: tests: test_taglist fails when 'helplang'

Re: Commit: add runtime/doc/tags-* to ignore files (#14479)

2024-04-10 Fir de Conversatie shane.qian
> add runtime/doc/tags-* to ignore files > (https://github.com/vim/vim/issues/14479) > > diff --git a/.gitignore b/.gitignore > index 5275e..241e96eaf 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -96,6 +96,7 @@ src/kword_test > > # Generated by "make install" > runtime/doc/doctag

Re: CSS syntax suddenly produces lots of errors

2024-04-10 Fir de Conversatie shane.qian
On 24/04/10 03:15PM, shane.qian wrote: > > > Suddenly when opening a CSS file in Vim (or when opening an HTML file, > > > because HTML syntax invokes CSS syntax), I see a huge lot of errors. > > > This is at patchlevel 9.1.296 or earlier. I didn't see it a few da

Re: CSS syntax suddenly produces lots of errors

2024-04-10 Fir de Conversatie shane.qian
> > Suddenly when opening a CSS file in Vim (or when opening an HTML file, > > because HTML syntax invokes CSS syntax), I see a huge lot of errors. > > This is at patchlevel 9.1.296 or earlier. I didn't see it a few days > > ago but I'm not sure at which changeset it appeared. > > Hm, may it be re

Re: matchbufline() and the 'ignorecase' option value

2024-02-22 Fir de Conversatie shane.qian
> The recently introduced matchbufline() and matchstrlist() functions > use the 'ignorecase' option value. If this option is set, then these > functions ignore the case when matching the strings. > So the behavior of a plugin using these functions depends on a user > configuration. > To ignore thi

Re: Commit: runtime(misc): announce adoption of various runtime files

2024-02-20 Fir de Conversatie shane.qian
> runtime(misc): announce adoption of various runtime files not sure what happened, but thank you Charles @cecamp you are definitely a legacy of vim history too, lots of init/basic and important vim plugins from your built. seems you were leaving, for whatever reason, i will miss you. -- shane.

Re: Question about tooling and stiling

2024-02-14 Fir de Conversatie shane.qian
On 24/02/14 08:04PM, shane.qian wrote: > > Hi, > > I was experimenting with setting up clangd and clang-format for the > > codebase. I've read the `:h develop` but I still have missing information. > > > > 1. Tabs or spaces? The documentation doesn'

Re: Question about tooling and stiling

2024-02-14 Fir de Conversatie shane.qian
> Hi, > I was experimenting with setting up clangd and clang-format for the > codebase. I've read the `:h develop` but I still have missing information. > > 1. Tabs or spaces? The documentation doesn't specify it and the source > files sometimes mix spaces and tabs. > 2. What parts of C99 are su

Re: How should I handle 'stickybuf' fallback behavior?

2023-12-27 Fir de Conversatie shane.qian
> I hope this is the right place to ask a question to Vim maintainers. My > question is about this post: https://github.com/vim/vim/issues/6445 not sure if it was right place, but i replied it in your ticket. or anyway, please refer 'https://github.com/vim/vim/issues/8122' i was struggle or try t

Re: Support for Private class/object methods

2023-08-26 Fir de Conversatie shane.qian
On 23/08/26 03:08PM, shane.qian wrote: > > > If "public" is omitted, shouldn't class members and method be private by > > > default just like "def" functions > > > and script variables are script-local by default unless prefixed with > >

Re: Support for Private class/object methods

2023-08-26 Fir de Conversatie shane.qian
> > If "public" is omitted, shouldn't class members and method be private by > > default just like "def" functions > > and script variables are script-local by default unless prefixed with > > "export"? > > > > Currently object/class methods are always public and the object/class > private metho

Re: Support for Private class/object methods

2023-08-24 Fir de Conversatie shane.qian
On 23/08/24 08:18PM, Yegappan Lakshmanan wrote: > Hi all, > > The following item is in the todo.txt file for implementing private > methods in a class: > > - Private methods? > either: private def Func() > or: def _Func() > Perhaps use "private" keyword instead of "_" pre

Re: Filtering git commits in vim-dev mailing list

2023-08-20 Fir de Conversatie shane.qian
> If this is annoying and nobody uses it anyhow, I can stop it. Or I can > start to use the prefix '^Commit:' in the patch messages. could you also think if possible to reduce the general comments in github to forward to vim_dev mailing list? since there lots of mails actually dup between this