Re: CompleteDone and different types of completion

2020-01-15 Fir de Conversatie Prabir Shrestha
I had this same request before. complete_info() should give this info. https://github.com/vim/vim/issues/4083 On Wednesday, January 15, 2020 at 1:10:34 PM UTC-8, Bram Moolenaar wrote: > > > Paul Jolly wrote: > > > We are using the CompleteDone event in govim > > (https://github.com/govim/govim)

Re: Vim9 script: first steps

2020-01-05 Fir de Conversatie Prabir Shrestha
> > > * provide a interface to a debug adapter to allow debugging of vimscript > > executing in a Vim instance (i.e. Vim Debug Adapter) > Sure. +1 for this. This is always the first function I write in a plugin. It would be good to either support chrome devtools debugg protocol or language serv

Re: Vim9 script: first steps

2020-01-04 Fir de Conversatie Prabir Shrestha
y System Interface, think of this like the C stdlib. This allows WASM to make system calls similar to read/write in c. * WASM threads - Allows to use threading, locks. * and many more On Saturday, January 4, 2020 at 5:10:39 PM UTC-8, Tony Mechelynck wrote: > > On Sun, Jan 5, 2020 at 1:22 AM Pr

Re: Vim9 script: first steps

2020-01-02 Fir de Conversatie Prabir Shrestha
It is great to see the numbers. @Bram What about something like this so it is 100% backwards compatible. The best part is that it works in current vim8 without any errors. function! s:greet(name) abort "use strict" echom a:name endfunction call s:greet('Vim9') Javascript does this too. ht

Re: So, how about Vim 9?

2019-12-17 Fir de Conversatie Prabir Shrestha
Glad to see you are already thinking of vim 9 and it is good to see the rythm of having a new goal ever year. I was personally waiting to hear more people comment on the ECMAScript (https:/ta.github.io/WasmExplorer//github.com/vim/vim/pull/5198) support before I share more details but here it g

Re: Popup windows mostly done

2019-09-08 Fir de Conversatie Prabir Shrestha
vim-lsp uses the new popup window a lot. https://github.com/prabirshrestha/vim-lsp Signature help: https://github.com/prabirshrestha/vim-lsp/pull/479 [image: terminal7] We also use it for hover to find information about the word under cursor. https://github.com/prabirshrestha/vim-lsp/pull/441

Re: Announce: ECMAScript interface for Vim

2019-05-11 Fir de Conversatie Prabir Shrestha
On Wednesday, March 6, 2019 at 12:09:58 PM UTC-8, Bob Pepin wrote: > > On 6 Mar 2019, at 13.36, Andy Massimino <...@gmail.com> wrote: > > > What is the performance of duktape like? > > > > Parsing typescript.js (~ 7 MB, 121 K lines) into an AST with Esprima takes 14 > s on Duktape, versus 0.5 s

Re: Announce: ECMAScript interface for Vim

2019-03-05 Fir de Conversatie Prabir Shrestha
+1 for ECMAScript in vim. -1 for TypeScript. It does sometime have breaking changes that needs to be fixed during upgrade. It also has flags on how strict we want to be so trying to come up with tsconfig.json that satisfies everyone as well as handle new ones will be a nightmare. Can we also h

Re: Terminal close behavior

2018-03-15 Fir de Conversatie Prabir Shrestha
I like how neovim does it. When you exit by default is doesn't close the terminal but shows [Process exited 0] and I can press any buttons to close it. (Attached image) On Wednesday, March 14, 2018 at 3:25:41 PM UTC-7, Dominique Pelle wrote: > Bram Moolenaar wrote: > > > I currently think tha

Re: Adding a new quickfix/location list at the end of the stack

2017-08-14 Fir de Conversatie Prabir Shrestha
On Sunday, August 13, 2017 at 9:23:55 PM UTC-7, yega...@gmail.com wrote: > Hi, > > On Sun, Aug 13, 2017 at 2:27 PM, Prabir Shrestha wrote: > > On Sunday, August 13, 2017 at 1:10:21 PM UTC-7, yega...@gmail.com wrote: > >> > >> Yes. We are very close to getting all

Re: Adding a new quickfix/location list at the end of the stack

2017-08-13 Fir de Conversatie Prabir Shrestha
On Sunday, August 13, 2017 at 1:10:21 PM UTC-7, yega...@gmail.com wrote: > Hi Bram, > > On Sun, Aug 13, 2017 at 4:42 AM, Bram Moolenaar wrote: > > > > Yegappan wrote: > > > >> When adding a new quickfix list using the setqflist() function, > >> currently the new list is added after the current qu

Re: [vim/vim] TextChangedI when pumvisible (#1691)

2017-05-16 Fir de Conversatie Prabir Shrestha
Either way sounds good to me. -- -- You received this message from the "vim_dev" 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 Gro

Feature Request: file change notifications

2016-12-28 Fir de Conversatie Prabir Shrestha
Any plans to support file change notifications? I'm implementing the language server protocol (https://github.com/Microsoft/language-server-protocol) for vimscript and would like to listen to file changes so that I can restart the language server if the config file (tsconfig.json or tslint.json