shouya

Results 59 comments of shouya

It looks like the environment variable `SETUP_COMPLETED` has been [deprecated](https://github.com/Kovah/LinkAce/blob/3c9755866d1820df657df63c675599f4ed642929/config/app.php#L145). Setting it to either `true` or `false` both leads me to the setup page. I tried inserting the value directly...

Thanks, running `insert into settings (user_id, key, value) values (null, 'system_setup_completed', 1)` fixes the problem for me. On June 17, 2022 12:51:57 PM UTC, Kevin Woblick ***@***.***> wrote: >If you...

Unfortunately, because I have too many documents @malb's solution still takes too long for the initialization to finish. Here's my workaround that simply shows the filename as the summary. It's...

I wrote two simple functions to manually turn on and off TabNine for the current buffer. It may be helpful for you. ```emacs-lisp (defun shou/tabnine-off () "turn off TabNine for...

I'm experiencing the same issue. I tried log in for several times but it never works. Versions tested: - v0.1.1 Pre-release (pre-compiled binary) - dc3adda (current master HEAD) Pidgin version:...

I'm building it with a clean compiler on a clean system, by following the exact instructions on https://tomu.im/. I've tried compiling some other examples and they all works fine. It...

@smurex I've got this fixed. This problem is because tmux's `run-shell` command runs a shell which doesn't read from user configs, thus tmux installed in /usr/local/bin will not be found....

A better way to get around with this is to insert the following line: ``` set-environment -g PATH "/usr/local/bin:/bin:/usr/bin" ``` before the first `run-shell`/`run` command in your `~/.tmux.conf` file, and...

@akashagarwal7 You might need to restart tmux server for the changed config to apply.

Also, `mix format` command supports specifying `.formatter.exs` via cli option `--dot-formatter`. > • --dot-formatter - path to the file with formatter configuration. > Defaults to .formatter.exs if one is available....