Conkeror interface for DisPass
Find a file
Tom Willemse b618a79a48 Update dispass_completer for new completers
Update `dispass_completer' for the latest Conkeror. Conkeror changed the
API for the completers somewhat so the completions were broken.
2014-06-15 23:58:33 +02:00
cdispass.js Update dispass_completer for new completers 2014-06-15 23:58:33 +02:00
README.org Initial commit 2013-05-26 01:16:50 +02:00

cDisPass

cdispass is a JavaScript-based wrapper around DisPass for the Conkeror Web Browser.

Usage

To use cdispass: Add its location to your load_paths and require it.

  load_paths.push("/path/to/cdispass/");
  require("cdispass");

And then you can use M-x dispass or you could bind dispass-and-submit to some key, like:

  define_key(content_buffer_text_keymap, "C-c d", "dispass-and-submit");

Which would cause C-c d to call the dispass command, insert the result in the current focused element and then submit the form in which the element is placed.