Ilya Gorskin

Results 6 issues of Ilya Gorskin

add git blame history into *.erl files like here ![2022-07-29-100406_710x319_scrot](https://user-images.githubusercontent.com/50538/181713189-607625e4-9735-47f0-b031-751954ef71d1.png)

in 2021.3 broken highlighting of links to code in the terminal. in #962 i try fix it but it not working yet

``` 2019-01-24 17:25:48.567 UTC [31329] ERROR: out of shared memory 2019-01-24 17:25:48.567 UTC [31329] HINT: You might need to increase max_locks_per_transaction. STATEMENT: COPY hep_proto_1_register(sid,create_date,protocol_header,data_header,raw) FROM STDIN ```

when you write a new function name, if name begins with letter next function in module started suggest name/arity next function. example: ```erlang han %%here suggest handle_cast(Request, State) handle_cast(Request, State)...

in PR #999 not supported parameterized types like here https://github.com/poroh/ersip/blob/master/src/uri/ersip_transport.erl#L38 @kvakvs

```python class MyManager(asterisk.manager.Manager): def queuestatus(self): cdict = {"Action": "QueueStatus"} response = self.send_action(cdict) return response ``` in response.data raw output, why not dict? and how parse this output? why in response.headers...