summaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)Author
2019-02-18Add the "gs" command for Gopher searchdefanor
2018-01-23Add initial RDF supportdefanor
With two types of caching: file-based for retrieved documents, and memory-based for predicate labels extracted from those.
2017-12-28Install and enable a few uncluttering XSLTs by defaultdefanor
2017-12-26Use Haskelinedefanor
The code is slightly cleaner with it, and it would be useful for completion.
2017-12-21Retain position on redisplay, reload, etcdefanor
Based on line numbers that are attached to document blocks, not dependent on window/terminal width. Some bits can still be refined/refactored, but here's the initial support.
2017-12-19Enable a user to specify a configuration filedefanor
This covers both command-line options and the "load config" (former "reload config") command.
2017-12-15Add the "redisplay" commanddefanor
2017-12-14Add the "set width" commanddefanor
This is mostly needed for embedding, since there doesn't seem to be any practical (let alone portable) standard way to notify pancake of emacs window size changes. In pancake.el, width adjustment is now getting done automatically whenever any other command gets issued.
2017-12-14Rename main elisp functionsdefanor
`pancake' into `pancake-new', `pancake-browse-url' into `pancake', and make its URL argument optional. Should be less confusing and more idiomatic this way, similar to w3m.
2017-12-14Update the "Uncluttering" README sectiondefanor
2017-12-13Add uncluttering/XSLT supportdefanor
2017-12-06Add a web.archive.org shortcut into the default configurationdefanor
Finding the last HTTP 200 response via the availability API, so a dummy "web-archive" scheme is added into the default configuration in order to use a custom command. The URI_ESCAPED environment variable is also introduced, though not used here -- but may be handy for similar custom commands.
2017-12-06Run curl with --compressed by defaultdefanor
Otherwise it fails on pages that are only available with compression.
2017-11-29Update commands in READMEdefanor
2017-11-28Use [ and ] instead of b and f for history navigationdefanor
Akin to info viewers, and these won't interfere with link enumeration. Also use "quit" instead of "q".
2017-11-28Introduce initial image supportdefanor
Pancake reports saved files to Emacs, Emacs inserts them into appropriate positions if they are images; `pancake-load-images' just sends "save" commands for all the images. `pancake-display-hook' was added as well, so that image loading can be requested automatically, among other things. There is a few things to improve: currently the images don't get sliced, there's no caching or parallelization, and no tracking of explicitly requested images.
2017-11-26Add file savingdefanor
User commands are adjusted, and the code is slightly refactored in order to fit this better.
2017-11-24Update README and convert it into reStructuredTextdefanor
It's more readable as plain text this way.