Added urlview keybinding

1.  A shortcut of 'b' was used as the default binding for passing
comment body text to urlview (this is similar to the default of C-b in
the 'mutt' text email client)
2.  The `comment_urlview` SubmissionController function was added to
recieve the SUBMISSION_OPEN_IN_URLVIEWER keypress request.
3.  The `open_urlview` terminal function was added to handle the urlview
request.  It passes the comment body data to urlview via a Popen
process.
4.  A test case was added to ensure this new code path is executed
5.  Small formatting changes, mostly line length
This commit is contained in:
Matt Smith
2016-07-04 22:42:30 -07:00
committed by Matt Smith
parent fb837bafc7
commit 749ad11171
9 changed files with 343 additions and 9 deletions

View File

@@ -136,6 +136,34 @@ If you prefer the complete terminal experience, set ``$BROWSER`` to a console-ba
`w3m <http://w3m.sourceforge.net/>`_, `lynx <http://lynx.isc.org/>`_, and `elinks <http://elinks.or.cz/>`_ are all good choices.
----------
Url Viewer
----------
You can open comment links using a url extraction binary.
The ``$RTV_URLVIEWER`` environment variable can be used to set the url viewer.
.. code-block:: bash
$ export RTV_URLVIEWER=urlview
The default program is ``urlview``, but most systems do not come with it installed by default.
Ubuntu
------
.. code-block:: bash
$ sudo apt-get install urlview
Mac with Homebrew
-----------------
.. code-block:: bash
$ brew install urlview
`urlview <https://github.com/sigpipe/urlview>`_, `urlscan <https://github.com/firecat53/urlscan>`_, are known to be compatible, but any program that accepts text via a stdin pipe will do
===
FAQ
===