diff options
author | bptato <nincsnevem662@gmail.com> | 2023-12-13 15:00:34 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-13 15:00:34 +0100 |
commit | 53bc47531543fe55997f4c6875fa03745a17e754 (patch) | |
tree | a7d3b3de2f68580a79415818bad84bf607e58c14 /src/local | |
parent | 4818cb28debf4601213707f6c1b9b22348b51fbc (diff) | |
download | chawan-53bc47531543fe55997f4c6875fa03745a17e754.tar.gz |
Various fixes
* Makefile: fix parallel build, add new binaries to install target * twtstr: split out libunicode-related stuff to luwrap * config: quote default gopher2html URL env var for unquote * adapter/: get rid of types/url dependency, use CURL url in all cases
Diffstat (limited to 'src/local')
-rw-r--r-- | src/local/container.nim | 1 | ||||
-rw-r--r-- | src/local/select.nim | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/local/container.nim b/src/local/container.nim index 09ec5a37..8a0ae37e 100644 --- a/src/local/container.nim +++ b/src/local/container.nim @@ -23,6 +23,7 @@ import types/cell import types/color import types/cookie import types/url +import utils/luwrap import utils/mimeguess import utils/strwidth import utils/twtstr diff --git a/src/local/select.nim b/src/local/select.nim index 95c89117..0be38104 100644 --- a/src/local/select.nim +++ b/src/local/select.nim @@ -1,10 +1,10 @@ -import unicode +import std/unicode import js/regex import server/buffer import types/cell +import utils/luwrap import utils/strwidth -import utils/twtstr type SubmitSelect* = proc(selected: seq[int]) |