Нет описания

David Nabraczky-Hajos a1b5cb9169 Fixing regex match for follow links 1 год назад
.github 37ab8915f3 Add build step to CI flow. 5 лет назад
test 99670ec37e add improvements for ivy backend to support user defined actions that access the 5 лет назад
.gitignore 036470ac01 Git should ignore lisp byte compiled files. 5 лет назад
.travis.yml 51eedb7aab Add travis ci support. 5 лет назад
COPYING fbde8b5be5 Add license information. 5 лет назад
Cask b3b7b904c3 Rename to xwwp and split packages. 5 лет назад
LICENSE fbde8b5be5 Add license information. 5 лет назад
Makefile b3b7b904c3 Rename to xwwp and split packages. 5 лет назад
README.md f67e070a6e Fix broken completion help for xwwp-follow-link. 5 лет назад
xwwp-follow-link-helm.el 99670ec37e add improvements for ivy backend to support user defined actions that access the 5 лет назад
xwwp-follow-link-ido.el e941d91b36 Remove package header from xwwp-follow-link and xwwp-follow-link-ido 5 лет назад
xwwp-follow-link-ivy.el 1f1646feaf fixed some issued with the additional ivy actions and macros that are used to 5 лет назад
xwwp-follow-link.el a1b5cb9169 Fixing regex match for follow links 1 год назад
xwwp.el ddbf1e0582 Using execute instead of script tag insert to inject follow link code 1 год назад

README.md

Emacs xwidget-webkit enhancement suite

This package enhance the integrated xwidget-webkit browser with hopefully useful functionnalities.

CI

Follow link

Using xwwp-follow-link to choose a link on the current web page. It also highlight the candidates on the web page.

Imgur

It currently supports completing-read, ido, ivy and helm completion backend. I'm willing to add support for other completion backend, open an issue with your backend of choice and I'll have a look at what can be done. Or better, fork and create a pull request, most of the needed code is already there, it just needs to be hooked.

DWIM style M-x xwwp

DWIM style command adapted from eww, smarter than the original xwidget-webkit-browse-url. Automatically prefixes and expands the url, and use xwwp-search-prefix to search for it if input doesn't look like an URL or a domain name.

If called with a prefix ARG, create a new Webkit session instead of reusing the default Webkit session.

Browse url in other window

The xwidget-webkit-browse-url just update the current xwidget-webkit buffer but does not bring it to the front (at least on MacOS), which is what you would expect. The xwwp-browse-url-orther-window method will also bring it to the front using swith-to-buffer-other-window.

How to install

Clone the repo locally and

(use-package xwwp-follow-link
  :load-path "~/.emacs.d/xwwp-follow-link"
  :custom
  (xwwp-follow-link-completion-system 'ivy)
  :bind (:map xwidget-webkit-mode-map
              ("v" . xwwp-follow-link)))

Or via Melpa M-x package-install xwwp, and setup for your completion backend via variable xwwp-follow-link-completion-system

Development

The goal of this package is to enhance the xwidget-webkit browser. If you have any code or feature suggestion that you think should make it into this package, please open an issue or better, create a pull request!

Authors