Dmitry Bely

Results 64 comments of Dmitry Bely

Hmm, I tried empty prefix and it worked. The cursor position was right after `obj#`

BTW, you can easily see the whole vim/merlin conversation using env variable MERLIN_LOG (set it to the log file name)

Here is a fresh merlin conversation (merlin is started directly the from command line): ``` ["tell","source-eof","let o = object\n method print_a = print_endline \"a\";\n method print_b = print_endline \"b\";\nend\n\nlet ()...

@hackwaly, why `o#()`? type `o#` and then press Ctrl-X Ctrl-O

It's better now. Auto-completion on typing `#` works as expected: ![image](https://cloud.githubusercontent.com/assets/6112699/20036160/c648b292-a410-11e6-9c29-1b67bea4ec80.png) But if you hit backspace twice and then type `o#` several times, eventually you'll see the following: ![image](https://cloud.githubusercontent.com/assets/6112699/20036207/73e9b24c-a412-11e6-9ae8-99a97a6b324f.png) Log...

> the async problem looks like a bug of VS Code self. Could you file a bug report to vscode team? > Currently, I'm mainly work on the ocaml-language-server. I...

@hackwaly > The a.b is fixed. Great, thanks a lot! > The a' problem is that vscode doesn't use language's wordPattern to extract expression. I see. Maybe it's worth a...

Alas, the vscode team won't fix https://github.com/Microsoft/vscode/issues/32873 in the foreseeable future. So you can close the issue.

Hi @memsharded > This is expected. The current solution is using a hook (check the one we are using in conan-center: https://github.com/conan-io/hooks/blob/a52cef5ffed0ff11bed757c42e66a95f792572b8/hooks/conan-center.py#L762) that implement exactly that. Didn't know that, thanks....

I see. But maybe to support both `-D 'VAL 1'` and `-D VAL=1`? It shouldn't be that hard. And it would be great if the syntax was mentioned in the...