Wednesday, September 18, 2024

Re: Spam Script submissions on vim.org

On Di, 17 Sep 2024, 'Paul' via vim_use wrote:

> FYI there is now only one item in the feed and it is this:
>
> ❗️❗️This feed has exceeded usage limit❗️❗️
>
> The available feed limit is 0.
> The ranking of this feed is 1.
>
> Please update your subscription plan at:
> https://rsseverything.com/subscription
>
> Or manager your feeds in dashboard:
> https://rsseverything.com/dashboard

Ah, it appears we only had 7 free days for testing :/

I guess I have to pay for the service, it's just unclear how many
credits I need. Strange UI with no contact possibilities.

Thanks,
Christian
--
I'd rather be led to hell than managed to heaven.

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZuqOV70Nja2qfYYp%40256bit.org.

Tuesday, September 17, 2024

Re: Spam Script submissions on vim.org

FYI there is now only one item in the feed and it is this:

❗️❗️This feed has exceeded usage limit❗️❗️

The available feed limit is 0.
The ranking of this feed is 1.

Please update your subscription plan at:
https://rsseverything.com/subscription

Or manager your feeds in dashboard:
https://rsseverything.com/dashboard

-- Delivered by RssEverything service

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZunfYhlwnG3GSjr6%40kitt.default.meeow.uk0.bigv.io.

Sunday, September 15, 2024

Re: unable to set "tags" file in front of "tags" option

thanks...

Enan Ajmain schrieb am Samstag, 14. September 2024 um 17:28:25 UTC+2:
On Sat, 14 Sep 2024 02:33:55 -0700 (PDT)
Andreas Otto <aotto1...@gmail.com> wrote:
> Hi, I build my *tags* options like:
>
> source $NHI1_HOME/example/.vimrc
> set tags+=$NHI1_HOME/theKernel/jv/tags
> set tags+=$NHI1_HOME/theLink/jv/tags
> set tags+=$NHI1_HOME/theConfig/jv/tags
> set tags+=$NHI1_HOME/theSq3Lite/jv/tags
>
> with the most specific *tags* files at the end (+=). my problem is that I
> want the most specific *tags* file in the FRONT of the *tags* option.
>
> I'm a little embarrassed to ask such a simple question, but since Vim has
> decided to use a somewhat "unusual" custom development as a "programming
> language", I unfortunately have no choice but to go down this route.
>
> Normally I would assume that something like:
> > set tags=/my/file/to/tags,$tags
> would work, but it just doesn't.
>

Try "^=" to prepend instead of "+=" which appends. From the helpdocs:

:se[t] {option}+={value} *:set+=*
Add the {value} to a number option, or append the
{value} to a string option. When the option is a
comma-separated list, a comma is added, unless the
value was empty.
If the option is a list of flags, superfluous flags
are removed. When adding a flag that was already
present the option value doesn't change.
Also see |:set-args| above.

:se[t] {option}^={value} *:set^=*
Multiply the {value} to a number option, or prepend
the {value} to a string option. When the option is a
comma-separated list, a comma is added, unless the
value was empty.
Also see |:set-args| above.


--
Enan

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/5c46ae1d-fb3a-4d49-a42e-15abce2a4547n%40googlegroups.com.

Saturday, September 14, 2024

Re: unable to set "tags" file in front of "tags" option

On Sat, 14 Sep 2024 02:33:55 -0700 (PDT)
Andreas Otto <aotto1968zwei@gmail.com> wrote:
> Hi, I build my *tags* options like:
>
> source $NHI1_HOME/example/.vimrc
> set tags+=$NHI1_HOME/theKernel/jv/tags
> set tags+=$NHI1_HOME/theLink/jv/tags
> set tags+=$NHI1_HOME/theConfig/jv/tags
> set tags+=$NHI1_HOME/theSq3Lite/jv/tags
>
> with the most specific *tags* files at the end (+=). my problem is that I
> want the most specific *tags* file in the FRONT of the *tags* option.
>
> I'm a little embarrassed to ask such a simple question, but since Vim has
> decided to use a somewhat "unusual" custom development as a "programming
> language", I unfortunately have no choice but to go down this route.
>
> Normally I would assume that something like:
> > set tags=/my/file/to/tags,$tags
> would work, but it just doesn't.
>

Try "^=" to prepend instead of "+=" which appends. From the helpdocs:

:se[t] {option}+={value} *:set+=*
Add the {value} to a number option, or append the
{value} to a string option. When the option is a
comma-separated list, a comma is added, unless the
value was empty.
If the option is a list of flags, superfluous flags
are removed. When adding a flag that was already
present the option value doesn't change.
Also see |:set-args| above.

:se[t] {option}^={value} *:set^=*
Multiply the {value} to a number option, or prepend
the {value} to a string option. When the option is a
comma-separated list, a comma is added, unless the
value was empty.
Also see |:set-args| above.


--
Enan

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/20240914112814.00004584%40gmail.com.

unable to set "tags" file in front of "tags" option

Hi, I build my tags options like:

source $NHI1_HOME/example/.vimrc
set tags+=$NHI1_HOME/theKernel/jv/tags
set tags+=$NHI1_HOME/theLink/jv/tags
set tags+=$NHI1_HOME/theConfig/jv/tags
set tags+=$NHI1_HOME/theSq3Lite/jv/tags


with the most specific tags files at the end (+=). my problem is that I want the most specific tags file in the FRONT of the tags option.

I'm a little embarrassed to ask such a simple question, but since Vim has decided to use a somewhat "unusual" custom development as a "programming language", I unfortunately have no choice but to go down this route.

Normally I would assume that something like:
> set tags=/my/file/to/tags,$tags
would work, but it just doesn't.

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/1d9c6cb3-da00-461c-a1fe-bc08de597ed6n%40googlegroups.com.

Tuesday, September 10, 2024

Re: Spam Script submissions on vim.org

On Tue, Sep 10, 2024 at 06:47:48PM +0200, Christian Brabandt wrote:
>> On Tue, Sep 10, 2024 at 05:59:08PM +0200, Christian Brabandt wrote:
>> > > I used to report these sometimes but the RSS feed at https://feed43.com/vim-scripts.xml stopped working a while ago…
>> >
>> > Where did you see this feed? I have now created:
>> > https://rsseverything.com/feed/bf4677cd-f853-449a-95d7-ca7bce8f8b0d.xml
>> > But don't know where to change it on the website.
>>
>> Thanks. The HTML source has a link rel="alternate" that links to feed43.com.
>
>Ah, okay. Try now.

It works :)

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZuB7c6ZUujOB7UiQ%40kitt.default.meeow.uk0.bigv.io.

Re: Spam Script submissions on vim.org

On Di, 10 Sep 2024, 'Paul' via vim_use wrote:

> On Tue, Sep 10, 2024 at 05:59:08PM +0200, Christian Brabandt wrote:
> > > I used to report these sometimes but the RSS feed at https://feed43.com/vim-scripts.xml stopped working a while ago…
> >
> > Where did you see this feed? I have now created:
> > https://rsseverything.com/feed/bf4677cd-f853-449a-95d7-ca7bce8f8b0d.xml
> > But don't know where to change it on the website.
>
> Thanks. The HTML source has a link rel="alternate" that links to feed43.com.

Ah, okay. Try now.

Thanks,
Christian
--
H. L. Mencken suffers from the hallucination that he is H. L. Mencken --
there is no cure for a disease of that magnitude.
-- Maxwell Bodenheim

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZuB4NOpF3Wot1REq%40256bit.org.

Re: Spam Script submissions on vim.org

On Tue, Sep 10, 2024 at 05:59:08PM +0200, Christian Brabandt wrote:
>> I used to report these sometimes but the RSS feed at https://feed43.com/vim-scripts.xml stopped working a while ago…
>
>Where did you see this feed? I have now created:
>https://rsseverything.com/feed/bf4677cd-f853-449a-95d7-ca7bce8f8b0d.xml
>But don't know where to change it on the website.

Thanks. The HTML source has a link rel="alternate" that links to feed43.com.

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZuB2VozaOJnEKKo9%40kitt.default.meeow.uk0.bigv.io.

Re: Spam Script submissions on vim.org

On Mi, 04 Sep 2024, 'Paul' via vim_use wrote:

> I used to report these sometimes but the RSS feed at https://feed43.com/vim-scripts.xml stopped working a while ago…

Where did you see this feed? I have now created:
https://rsseverything.com/feed/bf4677cd-f853-449a-95d7-ca7bce8f8b0d.xml
But don't know where to change it on the website.

Thanks,
Christian
--
I love children. Especially when they cry -- for then someone takes them away.
-- Nancy Mitford

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZuBszN6VMxRR4HH3%40256bit.org.

Re: Spam Script submissions on vim.org

Hi,
please don't share pictures, just the script-ids + user_ids.

I think I have now deleted all of those.

Thanks,
Chris

On Di, 10 Sep 2024, rwmit...@gmail.com wrote:

> More spam.  The help for students isn't using Vim in any obvious way:
>
> spam.png
>
> Here is the start on the main page:
>
> spam.png
> On Thursday, September 5, 2024 at 2:34:25 AM UTC-4 Christian Brabandt wrote:
>
>
> On Mi, 04 Sep 2024, 'Paul' via vim_use wrote:
>
> > I used to report these sometimes but the RSS feed at
> > https://feed43.com/vim-scripts.xml stopped working a while ago…
>
> I am not sure what happened there. I'll have a look at the RSS feed, but
> don't know when I come to it.
>
> Thanks,
> Christian




Mit freundlichen Grüßen
Christian
--
The girl who swears no one has ever made love to her has a right to swear.
-- Sophia Loren

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZuBnHABMG2ajgm9T%40256bit.org.

Re: Spam Script submissions on vim.org

More spam.  The help for students isn't using Vim in any obvious way:

spam.png

Here is the start on the main page:

spam.png
On Thursday, September 5, 2024 at 2:34:25 AM UTC-4 Christian Brabandt wrote:

On Mi, 04 Sep 2024, 'Paul' via vim_use wrote:

> I used to report these sometimes but the RSS feed at
> https://feed43.com/vim-scripts.xml stopped working a while ago…

I am not sure what happened there. I'll have a look at the RSS feed, but
don't know when I come to it.

Thanks,
Christian
--
Education is the process of casting false pearls before real swine.
-- Irwin Edman

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/f1bb8914-50eb-4f8f-8ee4-1248ba6e914dn%40googlegroups.com.

Wednesday, September 4, 2024

Re: Using mapping

On Tue, 3 Sep 2024 19:45:18 +0300
M <matthewtarasov@gmail.com> wrote:
> Christian Brabandt <cblists@256bit.org>:
>
> >
> > On Di, 03 Sep 2024, Enan Ajmain wrote:
> >
> > > Hi everyone,
> > >
> > > ":h using-<Plug>" explains the usecase of <Plug> in quite an obscure
> > > manner. Using examples from perspectives of plugin authors _and_ plugin
> > > users would be more helpful. It should specially inform the user that
> > > any mapping using the "<Plug>" keyword should be a recursive mapping.
> > >
> > > I think the doc should be updated. Maybe we can follow this vi.SO
> > > answer: https://vi.stackexchange.com/a/31013.
> >
> > Can you think of a concrete doc patch please?
>
> Actually, it's not written like this, because it's not like this. In a
> sense that any occurence of <plug>thing is always treated as recursive.
> So users (finally ;-) don't have to remember about it. I can't say when it
> was done exactly but more than a few months at least.

You're right. In both my Windows and Linux machines, I use the
(almost-) latest vim built from source. Recently I added a
non-recursive "<Plug>" mapping in my vimrc and it worked fine. But then
I saw that it didn't work in my WSL vim. Now I realize the version of
vim in WSL is 8.2. I guess there isn't any further need for the doc to
be updated. But if I do draft a doc patch, I'll open a PR.

--
Enan

> Yet if you believe that the docs should be improved, as Christian
> suggested, you can submit your patch.
> If registered on github then you can also create a pull request at
> https://github.com/vim/vim/pulls
> Both source code and documentation improvements are always welcome.
>
> Kind regards,
> Matvey
>

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/20240905024842.000015a7%40gmail.com.

Re: Spam Script submissions on vim.org

On Mi, 04 Sep 2024, 'Paul' via vim_use wrote:

> I used to report these sometimes but the RSS feed at
> https://feed43.com/vim-scripts.xml stopped working a while ago…

I am not sure what happened there. I'll have a look at the RSS feed, but
don't know when I come to it.

Thanks,
Christian
--
Education is the process of casting false pearls before real swine.
-- Irwin Edman

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZtlQ5GvQiZY4m8ji%40256bit.org.

Re: Spam Script submissions on vim.org

On Thu, Aug 29, 2024 at 05:23:18PM +0200, Christian Brabandt wrote:
>On Do, 29 Aug 2024, rwmit...@gmail.com wrote:
>
>> There are currently two obvious spam scripts submitted to vim.org.  Who has the ability to remove them and require pre-approval for first time submitters?
>
>Please share the links (script id and userid) and I'll take care. I have
>just today deleted an obvious spammer and his script. You can always
>contact me off-list and I'll take care of it.

I used to report these sometimes but the RSS feed at https://feed43.com/vim-scripts.xml stopped working a while ago…

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZtgjlPg4z-LfhHtd%40kitt.default.meeow.uk0.bigv.io.

Tuesday, September 3, 2024

Re: Using mapping


вт, 3 сент. 2024 г. в 18:48, Christian Brabandt <cblists@256bit.org>:

On Di, 03 Sep 2024, Enan Ajmain wrote:

> Hi everyone,
>
> ":h using-<Plug>" explains the usecase of <Plug> in quite an obscure
> manner.  Using examples from perspectives of plugin authors _and_ plugin
> users would be more helpful.  It should specially inform the user that
> any mapping using the "<Plug>" keyword should be a recursive mapping.
>
> I think the doc should be updated.  Maybe we can follow this vi.SO
> answer: https://vi.stackexchange.com/a/31013.

Can you think of a concrete doc patch please?

Thanks,
Christian
--
So many men, so many opinions; every one his own way.
                -- Publius Terentius Afer (Terence)

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZtcvulbSY8BEIuKw%40256bit.org.

 
Hello,

Actually, it's not written like this,  because it's not like this. In a sense that any occurence of <plug>thing is always treated as recursive.
So users (finally ;-) don't have to remember about it. I can't say when it was done exactly but more than a few months at least.

Yet if you believe that the docs should be improved, as Christian suggested, you can submit your patch.
If registered on github then you can also create a pull request at https://github.com/vim/vim/pulls
Both source code and documentation improvements are always welcome.

Kind regards,
Matvey

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/CAFsTB%2BLmZ5Q5Dmvq7Jg%3DJmk%2BD_CjUbEaBVcyjiKc%2BD7sPoWQ7Q%40mail.gmail.com.

Re: Using mapping

On Di, 03 Sep 2024, Enan Ajmain wrote:

> Hi everyone,
>
> ":h using-<Plug>" explains the usecase of <Plug> in quite an obscure
> manner. Using examples from perspectives of plugin authors _and_ plugin
> users would be more helpful. It should specially inform the user that
> any mapping using the "<Plug>" keyword should be a recursive mapping.
>
> I think the doc should be updated. Maybe we can follow this vi.SO
> answer: https://vi.stackexchange.com/a/31013.

Can you think of a concrete doc patch please?

Thanks,
Christian
--
So many men, so many opinions; every one his own way.
-- Publius Terentius Afer (Terence)

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ZtcvulbSY8BEIuKw%40256bit.org.

Monday, September 2, 2024

Using mapping

Hi everyone,

":h using-<Plug>" explains the usecase of <Plug> in quite an obscure
manner. Using examples from perspectives of plugin authors _and_ plugin
users would be more helpful. It should specially inform the user that
any mapping using the "<Plug>" keyword should be a recursive mapping.

I think the doc should be updated. Maybe we can follow this vi.SO
answer: https://vi.stackexchange.com/a/31013.

--
Enan

--
--
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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/20240903021804.00004af7%40gmail.com.