Nickwiz

Results 10 comments of Nickwiz

> If you're on Linux then you could build DB4S yourself or just install SQLite as DB4S just uses whatever version of SQLite you have on your system tucked away....

Compiled from Git repo, and now it follows system version. Guess the one stuck at `3.15.2` was built against `ibsqlite3-dev` of that version or something. IDK. I used the stable...

Thanks for feedback. 1. I meant the top-bar (i.e. the one with link to front-page / index + search). It's surely different how people uses the site. Personally I jump...

Could have a look at it, but no idea where in the code-base to start reading. Any discussion on what would be more intuitive would also be nice. In general,...

Another hack. It creates a new window with one empty tab and one tab with desired page. Saves window-id to localStorage. (Session storage is cleared between reloads). On reload it...

> You could write this into a `md` file so we could add os specific instructions to the repo :) Yes. Thought about it, but would in that case do...

> how about think that case 'var a: any' (without assignment) is non-specific type yet? There is no such thing as a *non specific type*. Closest, I guess,, is `null`,...

> I'm a bit confused, why does it say that it is true by default, then immediately after it is false by default? As I read it; it is set...

I do not know the code good enough to answer that. What I found, from some simple tests, is that formatting is not preserved. E.g. Input text: ```text Text with...

There is no `void` type as I read it. If one instead of `type()` say for example: ```vim def s:get_void(): void enddef let x = s:get_void() ``` or vim9script: ```vim...