K

Results 24 comments of K

> The size of this margin can be reduced somewhat by setting the following in settings.toml, but it still leaves a small margin > This is a specification When you...

It seems f0624e5b01e82bef701f0eac6d7d64abec2b2132 fixed the issue (tested on linux and macos)

Hi, I had the same problem today. Sprockets [deliberately relies on LFs](https://github.com/sstephenson/sprockets/blob/master/lib/sprockets/directive_processor.rb#L126) (`String#lines()` uses `$/` and it defaults to `"\n"`). I'm not sure if Sprockets should fix it by handling...

Just a tip from a bug a found: don't initialize configuration-dependent values in immutable variables like [in the renderer](https://github.com/kyazdani42/nvim-tree.lua/blob/99d65afd6ef05cc57f835451126e5c44db03cef1/lua/nvim-tree/renderer/init.lua#L178-L234). These immutable values are set automatically when `require("nvim-tree")` is called and...

In my case (NVIDIA card), the several visual glitches and artifacts issues is almost always their FXAA (just like the issue with [electron-based apps](https://github.com/electron/electron/issues/13646), like [vscode](https://github.com/microsoft/vscode/issues/51789), sometimes even chrome). Windows...

I think the non-interactive shell is a non-issue since the deploy-specific environment should be set in `:remote_environment`. IMO, the deployment recipe should contain all the setup needed to successfully deploy...

Adding a regular `rel="stylesheet"` line to the `main.css` build block worked for me. In `index.html`: ``` html ``` This will inline `leaflet.css` into `main.css` in the dist output.

Is this intended to be a general feature for `environment` configuration or only `window_name`? Right now it seems it only applies to shell command configuration. I tested `{Session,Window} / start_directory`....

You could also implement smart case search where if you type an upper case character in the query, it enables case sensitivity in the search, otherwise treats it as case-insensitive....

:+1: I came here because the middleware is compressing empty body responses (as in header-only responses). This doesn't seem to be right, though, since the `Content-Length` for an empty body...