Saturday, September 30, 2023

Re: E325 ATTENTION message wrapping/formatting problem

On Fr, 29 Sep 2023, 'Trey Blancher' via vim_use wrote:

> I'm using vim 9.0.1850 on macOS Ventura 13.6, installed via Homebrew. I
> have a problem with the E325 ATTENTION message, informing me of an existing
> swap file. It appears that every line in the message is inordinately long,
> such that most of the message scrolls off the top of my terminal emulator
> window (and I can't scroll up to see it since I'm using vim in a tmux
> session/window/pane in Alacritty). This looks like a formatting or a text
> wrapping*s* problem.
>
> Here's a link to what I've copied out to the visible window, to try and
> demonstrate what I'm running into: https://paste.rs/TUl2R (it doesn't
> appear I can attach files to this Google Groups message). Here's a
> screenshot from my vertical rotated monitor: [image: Screenshot 2023-09-29
> at 15.22.48.png]
>
> This has been going on for quite some time, I don't know exactly when it
> started. Is there any way to fix this?

This is surprising and I have never seen this issue. Does it only happen
in Alacritty? Always? Can you check in different terminal emulators and
also in the GUI? What once it shows up, you abort vim, and restart using
`vim --clean` and then open the exact same file (so the E325 should
trigger again)?

Thanks,
Christian
--
Look at it this way: Your daughter just named the fresh turkey you brought
home "Cuddles", so you're going out to buy a canned ham. And you're still
drinking ordinary scotch?

--
--
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/ZRiOdoDKSjKXWmP5%40256bit.org.

Re: E325 ATTENTION message wrapping/formatting problem

On 2023-09-29, 'Trey Blancher' via vim_use <vim_use@googlegroups.com> wrote:
> I have a problem with the E325 ATTENTION message, informing me of an
> existing swap file. It appears that every line in the message is
> inordinately long,
> [...]
> This has been going on for quite some time, I don't know exactly when it
> started. Is there any way to fix this?

I don't know, but you may mitigate the problem with `SwapExists` to call
a function that uses a less intrusive prompt.

For example, vimrc includes:

vim9script
import autoload "my/libvimrc.vim" as lib
set cmdheight=2
autocmd SwapExists * lib.SwapExists()

Then, in libvimrc.vim, I define:

export def SwapExists()
echohl WarningMsg
echon $'A swap file exists: {fnamemodify(v:swapname, ":t")}'
echohl None
echon "\n" .. 'read-(o)nly (e)dit (r)ecover (d)elete (q)uit (a)bort (ENTER for details) '
v:swapchoice = nr2char(getchar())
echo "\r"
enddef

The same can be done in legacy Vim script, of course.

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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/ufa2i1%24usi%241%40ciao.gmane.io.

Friday, September 29, 2023

E325 ATTENTION message wrapping/formatting problem

I'm using vim 9.0.1850 on macOS Ventura 13.6, installed via Homebrew.  I have a problem with the E325 ATTENTION message, informing me of an existing swap file.  It appears that every line in the message is inordinately long, such that most of the message scrolls off the top of my terminal emulator window (and I can't scroll up to see it since I'm using vim in a tmux session/window/pane in Alacritty).  This looks like a formatting or a text wrappings problem.

Here's a link to what I've copied out to the visible window, to try and demonstrate what I'm running into:  https://paste.rs/TUl2R (it doesn't appear I can attach files to this Google Groups message). Here's a screenshot from my vertical rotated monitor: Screenshot 2023-09-29 at 15.22.48.png

This has been going on for quite some time, I don't know exactly when it started.  Is there any way to fix this?

Trey Blancher

--
--
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/08d8eeb6-e628-4c0e-bfff-18d2447cf92bn%40googlegroups.com.

Thursday, September 28, 2023

Re: Replace spaces with underscore after some pattern in line

Hi,

I hope I won't say a stupidity…

Le 28-09-2023, à 14:18:22 +0800, wenxin Wang a écrit :

>>:%s/\(XXX[^ ]*\) /\1_/g
>I am a newbie to vim, but would like to learn it . Please tell me what
>exactly does 1_ do in your command ? I knew that you wanted to substitute by underscore, but why
>1 was there?

It's not the '_1' that is important here, it the '\1', which is a back
reference to what is in between the (). So everything in there will be
used in the substitution and to that you add '_'.

--
--
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/ZRVijnJ025/BTiSe%40paros.lan.

Wednesday, September 27, 2023

Re: Replace spaces with underscore after some pattern in line

On Wed, Sep 27, 2023 at 4:50 AM 'c.willis111' via vim_use <vim_use@googlegroups.com> wrote:

------ Original Message ------
From: "Igor" <igor2x@gmail.com>
To: "vim_use" <vim_use@googlegroups.com>
Sent: Wednesday, 27 Sep, 2023 At 12:09
Subject: Replace spaces with underscore after some pattern in line

How to replace all of the spaces in each line after XXX string?

Input sample data:
aaaaaa bbbbbb cccc XXX aaaaa bbbbbbb
cccccccc eeeeeeeeee XXX aaa bbbb cccc ddd
aaaa bbbb ddd ee XXX aaa bbb dddd eee


Output sample data:
aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb
cccccccc eeeeeeeeee XXX_aaa_bbbb_cccc_ddd
aaaa bbbb ddd ee XXX aaa_bbb_dddd_eee


 
Zero width patterns are helpful here. Try,

:%s/\(XXX.*\)\@<=\s/_/g

Here, the expression says, any whitespace (\s) that is preceded by "XXX.*" be replaced with "_".

:help \@<=

Regards,
-Arun 

--
--
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/CAJUkyiHh%3DPETiAcuOpPWgLdrRvmfKLZYcCjGKdBAuGqMxbogng%40mail.gmail.com.

Re: Replace spaces with underscore after some pattern in line

On Wed, 27 Sep 2023, "'c.willis111' via vim_use" wrote:
> --
> Hi
>
> to my slight surprise this works:
>
>
> :%s/\(XXX[^ ]*\) /\1_/g
>
>
> The reason I had doubts is that the successive replacements start at the beginning of the earlier replacement.
>
>
> (Sorry about layout. I'm not into this add at the end bit).
>
>
> regards - Chris
>
>
> Oh no it doesn't. One needs to repeat until all done. The g is pointless. - Chris

I am a newbie to vim, but would like to learn it . Please tell me what
exactly does 1_ do in your command ? I knew that you wanted to substitute by underscore, but why
1 was there?

--
--
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/281db617-1c2f-1a4b-c58f-82a0fc74864%40126.com.

Re: Replace spaces with underscore after some pattern in line

All of the solutions work great.
Thanks to you all.

--
--
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/200c7a3e-5604-4595-ab0a-3e1583a84728n%40googlegroups.com.

Re: Replace spaces with underscore after some pattern in line

On Mi, 27 Sep 2023, Igor wrote:

> How to replace all of the spaces in each line after XXX string?
>
> Input sample data:
> aaaaaa bbbbbb cccc XXX aaaaa bbbbbbb
> cccccccc eeeeeeeeee XXX aaa bbbb cccc ddd
> aaaa bbbb ddd ee XXX aaa bbb dddd eee
>
> Output sample data:
> aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb
> cccccccc eeeeeeeeee XXX_aaa_bbbb_cccc_ddd
> aaaa bbbb ddd ee XXX aaa_bbb_dddd_eee

That is a bit tricky. I would probably use something like this:

:%s/\(XXX.*\)$/\=substitute(submatch(1), ' ', '_', 'g')/

Which basically grabs everything after the 'XXX' and replaces in that
submatch all whitespaces using a sub-replace-expression (see :h
sub-replace-expression and :h sub-replace-special).

Thanks,
Christian
--
Don't go surfing in South Dakota for a while.

--
--
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/ZRQdNCkqwetPL1%2BV%40256bit.org.

Re: Replace spaces with underscore after some pattern in line

:%s/\(XXX[^ ]*\) /\1_/g

This one replaces just the first space. E.g. the first line becomes:
aaaaaa bbbbbb cccc XXX_aaaaa bbbbbbb
Rather than (notice the second underscore after 'aaaaa'):
aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb

I came up with either:

%norm /XXX^Mv$:s/\%V /_/g^M

%V will limit the substitute to the visual selection

Or:

%s/XXX\zs.*/\=substitute(submatch(0), " ", "_", "g")/

 

BTW, the last line is missing an underscore after XXX. Would love to see a simpler command.


On Wed, 27 Sept 2023 at 12:50, 'c.willis111' via vim_use <vim_use@googlegroups.com> wrote:



------ Original Message ------
From: "Igor" <igor2x@gmail.com>
To: "vim_use" <vim_use@googlegroups.com>
Sent: Wednesday, 27 Sep, 2023 At 12:09
Subject: Replace spaces with underscore after some pattern in line

How to replace all of the spaces in each line after XXX string?

Input sample data:
aaaaaa bbbbbb cccc XXX aaaaa bbbbbbb
cccccccc eeeeeeeeee XXX aaa bbbb cccc ddd
aaaa bbbb ddd ee XXX aaa bbb dddd eee


Output sample data:
aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb
cccccccc eeeeeeeeee XXX_aaa_bbbb_cccc_ddd
aaaa bbbb ddd ee XXX aaa_bbb_dddd_eee




--
Hi

to my slight surprise this works:


:%s/\(XXX[^ ]*\) /\1_/g


The reason I had doubts is that the successive replacements start at the beginning of the earlier replacement.


(Sorry about layout. I'm not into this add at the end bit).


regards - Chris

--
--
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/37ceea77.880a.18ad67928c5.Webtop.99%40btinternet.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/CALe4Hp%3DTJ647Czy3_8f9LNjHzv7s_chvBZznFVgG1E1OgfXOiQ%40mail.gmail.com.

Re: Replace spaces with underscore after some pattern in line





------ Original Message ------
From: "c.willis111" <c.willis111@btinternet.com>
To: vim_use@googlegroups.com
Sent: Wednesday, 27 Sep, 2023 At 12:49
Subject: Re: Replace spaces with underscore after some pattern in line




------ Original Message ------
From: "Igor" <igor2x@gmail.com>
To: "vim_use" <vim_use@googlegroups.com>
Sent: Wednesday, 27 Sep, 2023 At 12:09
Subject: Replace spaces with underscore after some pattern in line

How to replace all of the spaces in each line after XXX string?

Input sample data:
aaaaaa bbbbbb cccc XXX aaaaa bbbbbbb
cccccccc eeeeeeeeee XXX aaa bbbb cccc ddd
aaaa bbbb ddd ee XXX aaa bbb dddd eee


Output sample data:
aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb
cccccccc eeeeeeeeee XXX_aaa_bbbb_cccc_ddd
aaaa bbbb ddd ee XXX aaa_bbb_dddd_eee




--
Hi

to my slight surprise this works:


:%s/\(XXX[^ ]*\) /\1_/g


The reason I had doubts is that the successive replacements start at the beginning of the earlier replacement.


(Sorry about layout. I'm not into this add at the end bit).


regards - Chris


Oh no it doesn't. One needs to repeat until all done. The g is pointless. - Chris

Re: Replace spaces with underscore after some pattern in line




------ Original Message ------
From: "Igor" <igor2x@gmail.com>
To: "vim_use" <vim_use@googlegroups.com>
Sent: Wednesday, 27 Sep, 2023 At 12:09
Subject: Replace spaces with underscore after some pattern in line

How to replace all of the spaces in each line after XXX string?

Input sample data:
aaaaaa bbbbbb cccc XXX aaaaa bbbbbbb
cccccccc eeeeeeeeee XXX aaa bbbb cccc ddd
aaaa bbbb ddd ee XXX aaa bbb dddd eee


Output sample data:
aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb
cccccccc eeeeeeeeee XXX_aaa_bbbb_cccc_ddd
aaaa bbbb ddd ee XXX aaa_bbb_dddd_eee




--
Hi

to my slight surprise this works:


:%s/\(XXX[^ ]*\) /\1_/g


The reason I had doubts is that the successive replacements start at the beginning of the earlier replacement.


(Sorry about layout. I'm not into this add at the end bit).


regards - Chris

Replace spaces with underscore after some pattern in line

How to replace all of the spaces in each line after XXX string?

Input sample data:
aaaaaa bbbbbb cccc XXX aaaaa bbbbbbb
cccccccc eeeeeeeeee XXX aaa bbbb cccc ddd
aaaa bbbb ddd ee XXX aaa bbb dddd eee


Output sample data:
aaaaaa bbbbbb cccc XXX_aaaaa_bbbbbbb
cccccccc eeeeeeeeee XXX_aaa_bbbb_cccc_ddd
aaaa bbbb ddd ee XXX aaa_bbb_dddd_eee




--
--
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/4441810a-bacc-41ae-8086-d4cd883b8eb8n%40googlegroups.com.

Tuesday, September 26, 2023

Re: Moving the Vim Homepage on 26.09.2023

On Tue, Sep 26, 2023 at 10:05 PM Christian Brabandt <cb@256bit.org> wrote:
>
> Dear all,
> the homepage has been moved to our new provider wavestack. It should be
> much more stable and performant again.
>
> There may still be some problems with the old php code, so if you notice
> anything, please let me know and I'll fix it.
>
> Best,
> Christian
> --
> The fancy is indeed no other than a mode of memory emancipated from the order
> of space and time. -- Samuel Taylor Coleridge
>
This is Tony Mechelynck and I'm using the mail interface because the
Google Groups interface lets me neither paste from the clipboard nor
attach a text file.

Indeed, when I browse to https://www.vim.org/ the ShowIP extension to
SeaMonkey tells me that I am at 31.172.117.18 which is the correct new
IP. The Vim Tips wiki, at vim.fandom.org, is also (as expected) still
accessible. However when I follow a link to a script, for instance
https://www.vim.org/scripts/script.php?script_id=2822 (a link found at
https://vim.fandom.com/wiki/Showing_the_ASCII_value_of_the_current_character)
which is supposed to be the page for the unicode.vim plugin, all I get
is a blank page (NOT Error 404) which (again according to ShowIP) is
supposed to come from 31.172.117.18. I have tried other script IDs, as
well as searched for scripts directly from the vim.org homepage,
always with the same (lack of) result.

Has the scripts database all gone to never-never land ? Or else, what
did I do wrong ?

FWIW, I am using a fiber connection in Brussels, Belgium, and at the moment,
* "systemctl status wicked" tells me
● wicked.service - wicked managed network interfaces
Loaded: loaded (/usr/lib/systemd/system/wicked.service; enabled;
preset: disabled)
Active: active (exited) since Wed 2023-09-27 00:00:12 CEST; 1h 54min ago
Process: 1267 ExecStart=/usr/sbin/wicked --systemd ifup all
(code=exited, status=0/SUCCESS)
Main PID: 1267 (code=exited, status=0/SUCCESS)
CPU: 70ms

Sep 26 23:59:47 linux-tuxedo systemd[1]: Starting wicked managed
network interfaces...
Sep 27 00:00:12 linux-tuxedo wicked[1267]: lo up
Sep 27 00:00:12 linux-tuxedo wicked[1267]: eth0 up
Sep 27 00:00:12 linux-tuxedo systemd[1]: Finished wicked managed
network interfaces.
* "ifstatus eth0" tells me the following, which I don't understand
(except the first line saying that it is up):
eth0 up
link: #2, state up, mtu 1500
type: ethernet, hwaddr f0:2f:74:1d:e9:8a
config: compat:suse:/etc/sysconfig/network/ifcfg-eth0
leases: ipv4 dhcp granted
leases: ipv6 dhcp granted, ipv6 auto granted
addr: ipv6 2a02:a03f:64bb:3801:cfd8:dc79:7fe0:4d62/64 [auto]
addr: ipv6 2a02:a03f:64bb:3801:f22f:74ff:fe1d:e98a/64 [auto]
addr: ipv4 192.168.129.0/23 [dhcp]
route: ipv4 default via 192.168.128.1 [dhcp]
route: ipv6 default via fe80::6e3:1aff:febf:d672 metric 1024 proto ra
* If the above is only between my fibre modem and my computer, then I
have no access to the internal configuration of the modem.

Best regards,
Tony.

--
--
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/CAJkCKXvi119Tv92ZL64zYVEajOOzZiCc8Gsn8GEyGR0%2Bb3nKMA%40mail.gmail.com.

Re: Moving the Vim Homepage on 26.09.2023

Dear all,
the homepage has been moved to our new provider wavestack. It should be
much more stable and performant again.

There may still be some problems with the old php code, so if you notice
anything, please let me know and I'll fix it.

Best,
Christian
--
The fancy is indeed no other than a mode of memory emancipated from the order
of space and time. -- Samuel Taylor Coleridge

--
--
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/ZRM5ktY07Wq26wGQ%40256bit.org.

Sunday, September 24, 2023

Moving the Vim Homepage on 26.09.2023

Dear all,
as you all know, we have had quite a few issues with our current hosting
provider for the vim.org homepage. Therefore, I'd like to announce,
that we'll be moving to a new hoster on tuesday, September 26th, 2023.

I will set the database on the current OSDN instance at 20:00 CEST
(14:00 EST) o'clock to readonly mode and so should be the old homepage.
I'll also add a banner that this is the old homepage. Hopefully the
switch will be done fast enough, that nobody notices it and we can
finally continue to use the new homepage with proper database
connections and ssl certificates.

However, the code is at the same time switched from the current php 5
version to a new php 8 installation, which required a rewrite of some of
the php pages and sql queries. Hopefully everything will still work as
expected. The new IP address should then be 31.172.117.18

In case of any questions, please redirect them to the vim_dev mailing
list.

Finally, I'd like to thank a few people involved:

- First of all, I'd like to thank Marc Schöchlin, who offered to take
care of the new Vim.org homepage hosting and at the same time, spend
some considerable amount of time to rewrite the homepage to php8.

- I'd also like to thank Shuji Sado who supported us with the old
OSDN.net hosting.

- I'd also like to thank Jeff Chousterman and wavestack cloud for
offering the infrastructure of the vim.org homepage. This should give
us a modern and reliable base for the future.

- And last but not least, thanks to Stefan Zehl for maintaining the DNS
for such a long time.


With all of your support this wouldn't be so easily possible!

Thanks,
Christian

--
--
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/ZRBzdaD7AuBxXplR%40256bit.org.

Friday, September 22, 2023

Google mail rejects (was: Moving the Vim Homepage)

Hi,

On Thursday, 2023-09-21 05:57:12 -0700, 'Christian Brabandt' via vim_use wrote:

> just as fyi it seems google blocked my message to the vim-use mailing list,
> for Spam reasons.

Not only your's, happened the same to me when sending to vim@vim.org
that appears to be a forwarder and "DKIM checks did not pass and SPF
check for [my domain] did not pass" for their IP. Obviously..

vim_use@googlegroups.com seems to be ok.

Eike

--
OpenPGP/GnuPG encrypted mail preferred in all private communication.
GPG key 0x6A6CD5B765632D3A - 2265 D7F3 A7B0 95CC 3918 630B 6A6C D5B7 6563 2D3A
Use LibreOffice! https://www.libreoffice.org/

--
--
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/ZQ2v_-xPdcYYdhjX%40kulungile.erack.de.

Re: texts in a cpp file are highlighted as comments while they are not comments

Hi Henrik,

On Saturday, 2023-09-16 05:21:47 -0400, Henrik Lin wrote:

> As show in the picture, my texts are highlighted as comments
> The OS is windows, vim version 8.2
>
> Note: I also checked the texts are not within /**/

Obviously that text is not C++ code, so it must be either comments but
if it's not within /**/ then maybe it's a block surrounded by

#if 0
...

Thursday, September 21, 2023

Fwd: Moving the Vim Homepage

Hi all,
just as fyi it seems google blocked my message to the vim-use mailing list, for Spam reasons.

Hopefully this goes through.

---------- Weitergeleitete Nachricht ---------
Von: Christian Brabandt <cb@256bit.org>
Datum: Donnerstag, 21. September 2023 um 14:42:37 UTC+2
Betreff: Moving the Vim Homepage
An: vim@vim.org <vim@vim.org>, vim_announce@googlegroups.com <vim_announce@googlegroups.com>


Dear all,
as you may have noticed, we have had some issues with the Vim.org
Homepage and https:// access (see also issue
https://github.com/vim/vim/issues/13079). It's actually even getting
worse as there does no longer seem to be any valid ssl certificate
available, while previously, only 1 out of 2 requests used an old ssl
cert.

I have no idea what is actually going on and my request for help to
osdn.net and the OSChina did not succeed :(

So we will be moving the Vim Homepage again. It depends a bit how fast
we can get the infrastructure up and running and then we need to move
the DNS record. I hope it should be doable until the end of the month
*fingerscrossed*.

In any case, once I know more details, I'll announce a maintenance
window for the vim.org homepage here and on vim.org so that we can
migrate the database properly and hopefully from then on, we will have a
better maintained vim.org homepage again.

@CC to our future homepage maintainer and the DNS admin so they know
that something will be coming.

Thanks,
Christian

--
--
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/8972b5c3-b00e-4b9c-9a67-236d89603a9fn%40googlegroups.com.

Re: Vim after Bram?

On Do, 21 Sep 2023, 'Sebastian Gödecke' via vim_use wrote:

> and vim.org -> scripts? The mysql server seems down ...
> Does anyone has access to this system?

Yes, working on it. Sorry for the inconvenience.

https://groups.google.com/g/vim_announce/c/itcFF4DNj4A/m/xRWhNM7UDQAJ

Best,
Christian
--
Langsam's Laws:
(1) Everything depends.
(2) Nothing is always.
(3) Everything is sometimes.

--
--
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/ZQw8Li/gQnDzE6yf%40256bit.org.

Re: Vim after Bram?

and vim.org -> scripts? The mysql server seems down ...
Does anyone has access to this system?

Regards Sebastian

Am Di., 19. Sept. 2023 um 14:59 Uhr schrieb Christian Brabandt <cblists@256bit.org>:

On Di, 19 Sep 2023, Salman Halim wrote:

> I might be mistaken, but I haven't seen any patches lately (I look at
> the list of patches on the FTP site readme). Is there another
> mechanism by which changes are being incorporated?

The FTP Server is retired. you can check the github Commits page for the
latest versions.

Best,
Christian
--
Endless the world's turn, endless the sun's spinning
Endless the quest;
I turn again, back to my own beginning,
And here, find rest.

--
--
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/ZQmbFixIKozJI/2U%40256bit.org.


--
Mit freundlichen Grüßen
Sebastian Gödecke

--
--
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/CAJRNCbaArrCQEWRzrp%2BM4pnWU4uBUzc2dQzN8TD37tOtomQuxg%40mail.gmail.com.

Wednesday, September 20, 2023

Re: Documentation error for command :UnicodeName

On Mi, 20 Sep 2023, Tony Mechelynck wrote:

> In helpfile unicode.txt (Version: 0.21 Tue, 26 Sep 2017 14:21:42
> +0200) at line 108 it is said that if there are several digraphs for a
> character, all will be shown *separated by commas* (emphasis mine).
> Actually, as shown in the example at line 114 and as can be checked by
> experiment, the digraphs (if there are several) are separated by
> spaces.
>
> I've tried to check what was the most recent version of that script
> (and its helpfile) but couldn't find it.

Thanks, verified using the Rouble sign. Fixed as of Commit
bc20d0fb3331a7b41708388c56bb8221c2104da7
https://github.com/chrisbra/unicode.vim/blob/master/doc/unicode.txt

Best,
Christian
--
It is difficult to produce a television documentary that is both
incisive and probing when every twelve minutes one is interrupted by
twelve dancing rabbits singing about toilet paper.
-- Rod Serling

--
--
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/ZQsCk2n2oOGf3QrU%40256bit.org.

Documentation error for command :UnicodeName

In helpfile unicode.txt (Version: 0.21 Tue, 26 Sep 2017 14:21:42
+0200) at line 108 it is said that if there are several digraphs for a
character, all will be shown *separated by commas* (emphasis mine).
Actually, as shown in the example at line 114 and as can be checked by
experiment, the digraphs (if there are several) are separated by
spaces.

I've tried to check what was the most recent version of that script
(and its helpfile) but couldn't find it.

Best regards,
Tony.

--
--
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/CAJkCKXu07uijsJSZSP6Z%2BpYC80KRZZyf%2BSpR%2Bxuesp5weBs-Ew%40mail.gmail.com.

Tuesday, September 19, 2023

Re: Vim after Bram?

On Di, 19 Sep 2023, Salman Halim wrote:

> I might be mistaken, but I haven't seen any patches lately (I look at
> the list of patches on the FTP site readme). Is there another
> mechanism by which changes are being incorporated?

The FTP Server is retired. you can check the github Commits page for the
latest versions.

Best,
Christian
--
Endless the world's turn, endless the sun's spinning
Endless the quest;
I turn again, back to my own beginning,
And here, find rest.

--
--
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/ZQmbFixIKozJI/2U%40256bit.org.

Re: Vim after Bram?

I might be mistaken, but I haven't seen any patches lately (I look at the list of patches on the FTP site readme). Is there another mechanism by which changes are being incorporated?

Thank you,

Salman

On Tue, Sep 19, 2023, 06:25 Owajigbanam Ogbuluijah <xigbanam@gmail.com> wrote:


On Mon, Sep 18, 2023 at 2:27 PM Yegappan Lakshmanan <yegappanl@gmail.com> wrote:
Hi,

On Sun, Sep 17, 2023 at 7:47 PM 'Philip Rhoades' via vim_use
<vim_use@googlegroups.com> wrote:
>
> People,
>
> I have been using Vim for so many decades that I sort of felt that Bram
> would always be there developing and improving the program - and while I
> have asked plenty of questions on the lists etc, I never really delved
> into how many other people contributed to the coding - approx how many
> would there be? for addons?
>
> Are there any proposals among the main developers about how the project
> will continue?  How they will work together?  Is there an obvious
> front-runner to be the "benevolent dictator"?
>

Thanks for reaching out.  Vim is being developed actively.  You can subscribe
to the vim-dev mailing list.  Also see
https://github.com/vim/vim/discussions/13087.

Regards,
Yegappan

>
> I can't see myself ever NOT using Vim, but it would be nice to know the
> project was in good hands and had a strong future . .
>
> I started learning C in the 80s - am I of any use for the cause now?
>
> Regards,
>
> Phil.

--
--
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/CAAW7x7k-AAZ_%2BQGyg2YvW7iY%2BevwmUMtA2mvJ4kZ53eCpS0OSA%40mail.gmail.com.

Vim is still actively being developed. I see more frequent Homebrew updates now. 

If you want to get involved, github.com/vim/vim is a good place to start.

--
--
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/CAOmRJrec%2BJeQoJ%3DNSSUBqZfWtfChwaZ-ThOZFBpcoc4FEJ_x_Q%40mail.gmail.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/CANuxnEexvwFdBgdXpitJYiHCvTq6-HP3jv1FFrxE7Jy%2BdZM%2B9w%40mail.gmail.com.

Re: Vim after Bram?



On Mon, Sep 18, 2023 at 2:27 PM Yegappan Lakshmanan <yegappanl@gmail.com> wrote:
Hi,

On Sun, Sep 17, 2023 at 7:47 PM 'Philip Rhoades' via vim_use
<vim_use@googlegroups.com> wrote:
>
> People,
>
> I have been using Vim for so many decades that I sort of felt that Bram
> would always be there developing and improving the program - and while I
> have asked plenty of questions on the lists etc, I never really delved
> into how many other people contributed to the coding - approx how many
> would there be? for addons?
>
> Are there any proposals among the main developers about how the project
> will continue?  How they will work together?  Is there an obvious
> front-runner to be the "benevolent dictator"?
>

Thanks for reaching out.  Vim is being developed actively.  You can subscribe
to the vim-dev mailing list.  Also see
https://github.com/vim/vim/discussions/13087.

Regards,
Yegappan

>
> I can't see myself ever NOT using Vim, but it would be nice to know the
> project was in good hands and had a strong future . .
>
> I started learning C in the 80s - am I of any use for the cause now?
>
> Regards,
>
> Phil.

--
--
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/CAAW7x7k-AAZ_%2BQGyg2YvW7iY%2BevwmUMtA2mvJ4kZ53eCpS0OSA%40mail.gmail.com.

Vim is still actively being developed. I see more frequent Homebrew updates now. 

If you want to get involved, github.com/vim/vim is a good place to start.

--
--
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/CAOmRJrec%2BJeQoJ%3DNSSUBqZfWtfChwaZ-ThOZFBpcoc4FEJ_x_Q%40mail.gmail.com.

Monday, September 18, 2023

Re: Vim after Bram?

Hi,

On Sun, Sep 17, 2023 at 7:47 PM 'Philip Rhoades' via vim_use
<vim_use@googlegroups.com> wrote:
>
> People,
>
> I have been using Vim for so many decades that I sort of felt that Bram
> would always be there developing and improving the program - and while I
> have asked plenty of questions on the lists etc, I never really delved
> into how many other people contributed to the coding - approx how many
> would there be? for addons?
>
> Are there any proposals among the main developers about how the project
> will continue? How they will work together? Is there an obvious
> front-runner to be the "benevolent dictator"?
>

Thanks for reaching out. Vim is being developed actively. You can subscribe
to the vim-dev mailing list. Also see
https://github.com/vim/vim/discussions/13087.

Regards,
Yegappan

>
> I can't see myself ever NOT using Vim, but it would be nice to know the
> project was in good hands and had a strong future . .
>
> I started learning C in the 80s - am I of any use for the cause now?
>
> Regards,
>
> Phil.

--
--
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/CAAW7x7k-AAZ_%2BQGyg2YvW7iY%2BevwmUMtA2mvJ4kZ53eCpS0OSA%40mail.gmail.com.

Re: texts in a cpp file are highlighted as comments while they are not comments

On Sa, 16 Sep 2023, Henrik Lin wrote:

> image.png
>
>
> As show in the picture, my texts are highlighted as comments
>
> The OS is windows, vim version 8.2
>
>  
>
> Note: I also checked the texts are not within /**/
>
>
> anything wrong with vim setting / encoding ?

It looks like you have `:set hls` enabled and pressed '*' on the text
`*` in the file.

See if the highlighting goes away with `:set nohls`

Best,
Christian
--
If the human brain were so simple that we could understand it,
we would be so simple we couldn'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/ZQgC0d1AyxJFgXWd%40256bit.org.

Sunday, September 17, 2023

Re: Vim after Bram?


On 18/9/23 12:47, 'Philip Rhoades' via vim_use wrote:
People,

I have been using Vim for so many decades that I sort of felt that Bram would always be there developing and improving the program - and while I have asked plenty of questions on the lists etc, I never really delved into how many other people contributed to the coding - approx how many would there be? for addons?

Are there any proposals among the main developers about how the project will continue?  How they will work together?  Is there an obvious front-runner to be the "benevolent dictator"?

I can't see myself ever NOT using Vim, but it would be nice to know the project was in good hands and had a strong future . .

I started learning C in the 80s - am I of any use for the cause now?

Regards,

Phil.
Like you I would like to always use Vim, but it is still being developed and seams to have a lead developer or two, so I am confident that all will be well in this post Bram world. There is still lots of activity on the developer list
--
   .~.     There are many things that I love....     /V\         but God Comes way above all else❣❣❣❣    /( )\    Francis (Grizzly) Smit    ^^-^^    http://www.smit.id.au/  

Re: Vim after Bram?

On Mon, 18 Sep 2023, "'Philip Rhoades' via vim_use" wrote:

> People,
>
> I have been using Vim for so many decades that I sort of felt that Bram would
> always be there developing and improving the program - and while I have asked
> plenty of questions on the lists etc, I never really delved into how many
> other people contributed to the coding - approx how many would there be? for
> addons?
>
> Are there any proposals among the main developers about how the project will
> continue? How they will work together? Is there an obvious front-runner to
> be the "benevolent dictator"?
>
> I can't see myself ever NOT using Vim, but it would be nice to know the
> project was in good hands and had a strong future . .
>
> I started learning C in the 80s - am I of any use for the cause now?
>
> Regards,
>
> Phil.
> --
> Philip Rhoades
>
> PO Box 896
> Cowra NSW 2794
> Australia
> E-mail: phil@pricom.com.au

It's really good to know that there are lots of people care about vim's
future. I really admire your enthusiasm about developing Vim. When the
time come, I would like to contribute to developing Vim.
Regards,
Vito.

--
--
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/a988fbda-3c48-337f-2b4d-2391d52c46eb%40126.com.

Vim after Bram?

People,

I have been using Vim for so many decades that I sort of felt that Bram
would always be there developing and improving the program - and while I
have asked plenty of questions on the lists etc, I never really delved
into how many other people contributed to the coding - approx how many
would there be? for addons?

Are there any proposals among the main developers about how the project
will continue? How they will work together? Is there an obvious
front-runner to be the "benevolent dictator"?

I can't see myself ever NOT using Vim, but it would be nice to know the
project was in good hands and had a strong future . .

I started learning C in the 80s - am I of any use for the cause now?

Regards,

Phil.
--
Philip Rhoades

PO Box 896
Cowra NSW 2794
Australia
E-mail: phil@pricom.com.au

--
--
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/30842cb6f929c4c0f0895f56d25e304d%40pricom.com.au.

Saturday, September 16, 2023

texts in a cpp file are highlighted as comments while they are not comments


As show in the picture, my texts are highlighted as comments

The OS is windows, vim version 8.2

 

Note: I also checked the texts are not within /**/


anything wrong with vim setting / encoding ?




--
linkedin : https://www.linkedin.com/in/henriklin
Skype : popoblue0222
(M) +1 437 971 2055

--
--
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/CALNEjeUbTtUesFsUzVpxRbY_aXWvBoAdb-LXOGnCKUhpDg38MA%40mail.gmail.com.

Friday, September 15, 2023

Re: expired certificate

I took a look with:

echo |  openssl s_client -showcerts -connect www.vim.org:443 2>/dev/null | openssl x509 -text | grep Not
            Not Before: Jun 10 04:38:43 2023 GMT
            Not After : Sep  8 04:38:42 2023 GMT

So it appears that one of their servers has an expired certificate. Most of my results were fine:

echo |  openssl s_client -showcerts -connect www.vim.org:443 2>/dev/null | openssl x509 -text | grep Not
            Not Before: Aug 26 23:34:41 2023 GMT
            Not After : Nov 24 23:34:40 2023 GMT

Either a script to update Let's Encrypt certificates is not running properly on that one server, or someone has failed to do a manual update if they do that.

On Wednesday, September 13, 2023 at 5:15:55 PM UTC-6 Stan Brown wrote:
Both in Firefox and in Chrome, I pasted
https://www.vim.org/
in the address bar. They are both quick to complain about expired
certificates; neither one had a problem displaying the page or showed
any odd messages.

Stan Brown
Tehachapi, CA, USA
https://BrownMath.com

On 2023-09-13 13:14, rwmit...@gmail.com wrote:
> Is anyone else seeing this?
>
> Untitled.png
>
> --
> --
> 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
> <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+u...@googlegroups.com
> <mailto:vim_use+u...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/vim_use/0dd2e1eb-2ca4-4eae-9aaf-59064e28d77fn%40googlegroups.com <https://groups.google.com/d/msgid/vim_use/0dd2e1eb-2ca4-4eae-9aaf-59064e28d77fn%40googlegroups.com?utm_medium=email&utm_source=footer>.

--
--
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/e9e81afc-1c88-40b3-b7a0-43a418f4138bn%40googlegroups.com.

Thursday, September 14, 2023

Re: syntax files: how to prevent embedded syntax from leaking out of a region?

On Friday, July 21, 2023 at 3:18:39 PM UTC-5 Edward McGuire wrote:
> how can I reliably ALWAYS limit embedded language highlighting to the region that contains it, without the chance that the embedded language can break out?

Still looking for a solution to this -- how to prevent pre-installed language syntaxes from breaking out of syntax regions marked "keepend".

Cheers!
Edward

--
--
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/1a65e0f4-1eaa-4123-8b4d-e9cc48a3887dn%40googlegroups.com.

Announce: vim-pastething pre-processing plugin

Hello. Let me share a copy-paste preprocessing plugin for Vim. It helps to automate some routine Markdown/LaTeX/others formatting for urls, images and text.

https://github.com/grwlf/vim-pastething

For example, the plugin can recognize that https://example.com is an url. It will convert it into [the_link](https://example.com) provided that we are editing a Markdown document and "the_link" string was visually selected at the moment of pasting.

The image pasting works in the style of img-paste.vim plugin - images are extracted by `xclip`/`wl-paste` and saved into a file. The relative path to the file is then inserted according to a pre-configured pattern.

--
--
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/46ee51b4-f4df-4234-83e5-e6acd352f4cdn%40googlegroups.com.

Wednesday, September 13, 2023

Re: expired certificate

Both in Firefox and in Chrome, I pasted
https://www.vim.org/
in the address bar. They are both quick to complain about expired
certificates; neither one had a problem displaying the page or showed
any odd messages.

Stan Brown
Tehachapi, CA, USA
https://BrownMath.com

On 2023-09-13 13:14, rwmit...@gmail.com wrote:
> Is anyone else seeing this?
>
> Untitled.png
>
> --
> --
> 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
> <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
> <mailto:vim_use+unsubscribe@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/vim_use/0dd2e1eb-2ca4-4eae-9aaf-59064e28d77fn%40googlegroups.com <https://groups.google.com/d/msgid/vim_use/0dd2e1eb-2ca4-4eae-9aaf-59064e28d77fn%40googlegroups.com?utm_medium=email&utm_source=footer>.

--
--
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/ac90f4b2-7a80-b437-5180-4d7e6ffed0bc%40fastmail.fm.

Re: expired certificate

I think I saw this the other day; I just ignored it and went ahead.

On Wed, Sep 13, 2023 at 4:14 PM rwmit...@gmail.com <rwmitchell@gmail.com> wrote:
Is anyone else seeing this?


--
--
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/0dd2e1eb-2ca4-4eae-9aaf-59064e28d77fn%40googlegroups.com.


--
 
Salman

I, too, shall something make and glory in the making.

--
--
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/CANuxnEe1cdSEt3aLMmshgaNL4v2-0o2fSdp-Xk1LXkNar8Kaag%40mail.gmail.com.

expired certificate

Is anyone else seeing this?

Untitled.png

--
--
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/0dd2e1eb-2ca4-4eae-9aaf-59064e28d77fn%40googlegroups.com.

Wednesday, September 6, 2023

Re: RIP Bram

Magnus Woldrich:

> What happens now with the vim project?

Said news ideed. Bram was a genial UI desinger, and Vim's
interface is polished to excellence.

Great projects never die with their maintainers, even if
they become orphaned. I am happy user of Video Display
Editor[1] and other great disconinued software. Like gold,
it does not fade.
____________________
1. <https://archive.org/details/vde-197>
<https://web.archive.org/web/20201011200758/https://sites.google.com/site/vdeeditor/Home/about-vde>

--
--
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/20230906190701.9ed9ecae1be2e8e31f99e22b%40gmail.com.