diff options
author | Yuchen Pei <hi@ypei.me> | 2022-10-17 18:02:39 +1100 |
---|---|---|
committer | Yuchen Pei <hi@ypei.me> | 2022-10-17 18:02:39 +1100 |
commit | 0c1b6e97ab5565b9504e3bddc6c8c3dbd8860a8d (patch) | |
tree | 2e2152b54de0223319573f75f0d017a2b2268aee | |
parent | 8e7da0d0894d3347991f14f4ccbe94d09bdfbec8 (diff) |
docstring minor
-rw-r--r-- | luwak.el | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -62,6 +62,7 @@ When non-nill, swap the tor-switch in prefix-arg effect." "Major mode for browsing the web using lynx -dump.") (defun luwak-open (url) + "Open URL in luwak." (interactive "sUrl to open: ") (luwak-open-internal url (xor luwak-tor-switch current-prefix-arg) 'luwak-add-to-history)) @@ -74,6 +75,7 @@ When non-nill, swap the tor-switch in prefix-arg effect." (message "Copied: %s" url))) (defun luwak-search (query) + "Search QUERY using 'luwak-search-engine'." (interactive "sLuwak search query: ") (luwak-open (format luwak-search-engine query))) |