Tim Pope
Tim Pope
There's a lot going on here, can you describe your symptoms as if the original issue didn't exist?
Try `:Start top`, does that work?
It's using `:!` because no other adapter is available, and Neovim's `:!` doesn't support interactive processes. There are plans to add `:terminal` support to Dispatch but until that happens, you...
I thought `--quiet` got rid of the prompt. Is this a behavior change in `mongosh` compared to `mongo`? Is there another flag we could use?
We can switch it to pass a filename. Please try this patch and confirm it fixes the issue: ```diff diff --git i/autoload/db/adapter/mongodb.vim w/autoload/db/adapter/mongodb.vim index a54fd6f..2ae9a6b 100644 --- i/autoload/db/adapter/mongodb.vim +++ w/autoload/db/adapter/mongodb.vim...
Unfortunately it may be a while before I have enough time to install MongoDB and investigate myself. What about something like `--query 'eval()'`? Can someone figure out the `` part?
We don't use the shell, but we could effectively the same thing by calling `readfile()` and passing it as an argument. Not a great solution, command line arguments have constraints...
You could maybe abuse `massage()` for this. A lot of adapters use it to add trailing semicolons, but maybe wrapping with `console.log()` could be sufficient? I guess it wouldn't cover...
I want some to add some kind of jump to definition functionality, but I'm not going to allow executing arbitrary code.
You could grab it with a hack like: ```viml autocmd BufReadPost *.dbout let g:last_dadbod_file = expand('%:p') ``` What are you planning on using it for?