Re: vim9 exported functions not recognized by ctags

2022-08-17 Thread N V
For extended powershell script, displaying functions with tagbar see this: https://github.com/preservim/tagbar/issues/830 If it can help. Have a good Day. Nicolas Le vendredi 12 août 2022 à 16:19:16 UTC+2, N V a écrit : > And YES It Is !! :) > > Windows configuration of *vim9script

Re: [vim9script] Behavior of has_key()

2022-08-17 Thread Bram Moolenaar
> The help entry for has_key() says that the key must be a string. In > legacy Vim script, however, this works fine: > > let dd = {42: '42', v:true: 'T', 3.14: '3.14'} > echo dd->has_key(42) > echo dd->has_key(v:true) > echo dd->has_key(3.14) > > In Vim 9 script, the behavior

[vim9script] Behavior of has_key()

2022-08-17 Thread Lifepillar
The help entry for has_key() says that the key must be a string. In legacy Vim script, however, this works fine: let dd = {42: '42', v:true: 'T', 3.14: '3.14'} echo dd->has_key(42) echo dd->has_key(v:true) echo dd->has_key(3.14) In Vim 9 script, the behavior is different: