Scott Ming
Scott Ming
``` def arrange(record, _opts, module) do case module.has_children?(record) do true -> Map.merge(record, %{children: do_build_children(record, module)}) false -> record end end defp do_build_children(record, module) do record |> module.children() |> Enum.map(fn x...
On the basis of @binaryseed 's work, I added parent-related logic and absinthe-related aggregation and transaction, I am not very familiar with newrelic, so there should be places to improve,...
I have rewrite `grpc_server` function, It works, but not pretty. ```python @pytest.fixture(scope='module') def grpc_add_to_server(): from repo_pb2_grpc import add_RepoServiceServicer_to_server from file_pb2_grpc import add_FileServiceServicer_to_server return add_RepoServiceServicer_to_server, add_FileServiceServicer_to_server @pytest.fixture(scope='module') def grpc_servicer(): from serviers.repo_servicer...
### Describe the bug ### Steps to reproduce 1. `:Lspsaga finder` 2. 10j ### Expected behavior should be highlighted like when moving with `j` or `k` ### Neovim version (nvim...
Elixir always returns the function kind, both private and private functions, but their names are not the same. https://github.com/elixir-lsp/elixir-ls/blob/master/apps/language_server/test/providers/document_symbols_test.exs#L79 I know this is less scalable, so if there is a...
This is my test output This is the test output buf: My expectation is that the cursor can move to the first line, and also, the height and width of...
I mainly run tests in the IEx shell when I develop Elixir projects, It's super fast, but it's easy to miss the notifications, so I want to use https://github.com/rcarriga/nvim-notify to...