Commits
- Commit:
479b240af68737bc8d545a0e5419252571c4bedd
- From:
- Omar Polo <op@omarpolo.com>
- Date:
minibuffer: augment minibuffer_read with the initial input
fixes a regression where the text inputted via ui_read() can't be edited.
- Commit:
dfd1efcc0cf22803275753d2e0b80b9a4ef8b3b0
- From:
- Omar Polo <op@omarpolo.com>
- Date:
minibuffer: redesign enter_minibuffer and fix regression
use a struct to pass the arguments to enter_minibuffer since they're
so many. While here, also allow to pass a printf(3)-like format string
for the prompt and specify the initial input.
Also, fix a regression: if we don't set vline.cplen we can't properly
handle the input, so do that in enter_minibuffer to avoid having to fix
all the callers.
- Commit:
057e7eb6f1bc703a5d90e6ca41a5506008b850e9
- From:
- Omar Polo <op@omarpolo.com>
- Date:
make yornp data be a void pointer instead of a tab
- Commit:
0fceedb5fedbf154222ba2e675ee20bd5651008f
- From:
- Omar Polo <op@omarpolo.com>
- Date:
minibuffer: pass the string to the donefn()
This avoids the callback to have to use the (private)
minibuffer_compl_text() to get the string. It'll simplifies a
follow-up changes, too.
- Commit:
fd6c540b6faa6c802c92c9e209e2122ca3ddfa92
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add cmd_search to search using a search engine
This adds a new command `search', bound by default to `s', that
prompts for a query and loads and consult the ``oracle'' (the search
engine) using default_search_engine (which will be made customizable.)
It also temporarly supports only gemini URLs.
Feature requested by -fab-, thanks!
- Commit:
5a39f5931f4b5be1d57d75c7f25cff8adae5f235
- From:
- Omar Polo <op@omarpolo.com>
- Date:
load and optionally remember client certificates
This adds use-certificate, a user function to start using a certificate
or switch to a different one. It asks whether to persist the
certificate, if not it will only be used for the current session.
use-certificate is implicitly called when the server replies with
a 6x status code.
- Commit:
6ab857d5a87585ace35a923121550f178f74a46d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
move includes back to the root directory
Splitting stuff into sub-directories was just a big mistake.