taobert
taobert
You may need to set your `LUA_CPATH`. In my hands, `LUA_CPATH="$LUA_CPATH;$HOME/.luarocks/lib/lua/5.1/?.so" make` builds. You'd need to tweak that for _your_ luarocks installation directory.
An example demonstrating the difficulty in reusing size hints may be valuable in agitating for this change. I think that greater consistency is probably a good enough reason, assuming of...
I think this is a pretty reasonable suggestion. The stacktrace which is used to report errors of this sort would be confronting and difficult to parse even if it used...
(I assume you're talking about vim's visual mode.) What is it that you want from a visual mode? I use it to highlight areas when i want to do text...
So as a follow up, setting `contenteditable=true` for the body (`:js document.body.setAttribute("contenteditable","true")`) allows insert mode to function on the entire page. This allows not just yanking text but also editing/deleting...
Hrmm, well. It seems there's already a `webview.enable_caret_browsing` setting which specifies "Whether keyboard navigation should be enabled", and set's the similarly named webkit property. If this is set, then entering...
I can confirm this. As for reproducibility, for me (also debian, current `develop`) running: `i=0; while make clean && make apidoc; do i=$((i+1)); echo $i; done` (or `i=0; while ./build-utils/docgen/makedoc.lua;...
So this seems to happen with luajit but not lua5.1. Further, it happens with the default set of optimisations (`-O3`) but not lower ones. (The specific set of optimisations required...
This is great news, and thanks for reporting it. There is [a separate repo](https://github.com/luakit/luakit.github.io) for the web page, and i suspect that this issue should be raised there. I'm not...
How important is it to you that it's only displayed while holding Alt? I can see that this would be a nifty thing to be able to do, but I...