gitextract_3q3a7_u6/ ├── .flake8 ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── COPYING ├── README-nix.org ├── README.org ├── c/ │ └── adblock.c ├── docs/ │ ├── Makefile │ ├── advanced_topics.rst │ ├── api.rst │ ├── basic_usage.rst │ ├── concepts.rst │ ├── conf.py │ ├── ext/ │ │ └── webmacs_sphinx_ext.py │ ├── faq.rst │ ├── glossary.rst │ ├── index.rst │ ├── make.bat │ └── user_configuration.rst ├── git_archive_all.py ├── pytest.ini ├── setup.py ├── test-requirements.txt ├── tests/ │ ├── integration/ │ │ ├── conftest.py │ │ ├── iframe_follow/ │ │ │ ├── index.html │ │ │ └── my_iframe.html │ │ ├── javascript_prompt/ │ │ │ └── index.html │ │ ├── navigation/ │ │ │ ├── index.html │ │ │ └── page1.html │ │ ├── test_copy_link.py │ │ ├── test_iframe_navigation.py │ │ ├── test_javascript_prompt.py │ │ ├── test_navigation.py │ │ └── test_user_download_dir.py │ ├── test_prompt_history.py │ └── test_variables.py └── webmacs/ ├── __init__.py ├── adblock.py ├── application.py ├── bookmarks.py ├── clipboard.py ├── commands/ │ ├── __init__.py │ ├── buffer_history.py │ ├── caret_browsing.py │ ├── content_edit.py │ ├── follow.py │ ├── global.py │ ├── isearch.py │ ├── minibuffer.py │ ├── webbuffer.py │ └── webjump.py ├── content_handler.py ├── default_webjumps.py ├── download_manager/ │ ├── __init__.py │ └── prompts.py ├── egrid.py ├── external_editor.py ├── features.py ├── filter_webengine_output.py ├── hooks.py ├── ignore_certificates.py ├── ipc.py ├── keyboardhandler.py ├── keymaps/ │ ├── __init__.py │ ├── caret_browsing.py │ ├── content_edit.py │ ├── fullscreen.py │ ├── global.py │ ├── hints.py │ ├── isearch.py │ ├── minibuffer.py │ └── webbuffer.py ├── killed_buffers.py ├── main.py ├── minibuffer/ │ ├── __init__.py │ ├── prompt.py │ └── right_label.py ├── mode.py ├── password_manager/ │ ├── __init__.py │ └── password_store.py ├── profile.py ├── scheme_handlers/ │ ├── __init__.py │ └── webmacs/ │ ├── __init__.py │ ├── js/ │ │ └── vue.js │ └── templates/ │ ├── base.html │ ├── bindings.html │ ├── command.html │ ├── commands.html │ ├── downloads.html │ ├── key.html │ ├── keymap.html │ ├── variable.html │ ├── variables.html │ └── version.html ├── scripts/ │ ├── caret_browsing.js │ ├── hint.js │ ├── password_manager.js │ ├── setup.js │ ├── textedit.js │ └── textzoom.js ├── session.py ├── spell_checking.py ├── task.py ├── url_opener.py ├── variables.py ├── version.py ├── visited_links.py ├── webbuffer.py ├── webview.py └── window.py