Sebastian Blask

Results 72 comments of Sebastian Blask

Any chance the proposed solution from https://gitlab.com/gitlab-org/gitlab/-/issues/16319 could be used? I.e. use the reset API to create a new token?

It's been a while since I last checked, but with 13.9 I get an error for macros and records defined in another file and consequently in all the functions using...

Nevermind, the errors come from actual errors, the propagation of errors to calling functions makes it hard to keep track of the original problem. The "got to declaration" problem persists...

I have in project/lib/app/include a file a.hrl: -define(MAX, 3). and in project/lib/app/src the file a.erl: -module(a). -export([do_something/0]). -include_lib("app/include/a.hrl"). -define(MIN, 1). do_something() -> case ?MAX of 3 -> io:format("3") end, case...

No I didn't, but I tried and it didn't change anything. Also, if I had to, that would many include directories in my case :-/

I think I finally understood what's going on and why it failed. In fact, this was a configuration problem. I wrote a little script to do what Erlide will hopefully...

At least in the latest nightly, I have another problem with going to macro definitions. Say I'm in a file, there is a macro, I do F3 to go to...

Do you have tmux-prefix-highlight installed? I had the same problem(using ctrl-u and only if there was a URL to be found) you had, uninstalled the plugin, restarted tmux and it...

I was a bit hasty there. Seems like I changed my config and plugins at the same time while investigating. Now I seem to have identified the problem, this line...

This is exactly what I wanted to have the focus gained working for. I have tmux/vim setup so the cursor is a block in normal mode and a pipe in...