From 08ea751fe1cf1a2da9cd1fc97453bb425517a4f3 Mon Sep 17 00:00:00 2001 From: Philipp Albrecht Date: Fri, 30 Jun 2023 10:50:22 +0200 Subject: Remove modeline pylint checker We're deprecating vim modelines in favor of `.editorconfig`. --- .pylintrc | 1 - .../dev/pylint_checkers/qute_pylint/modeline.py | 63 ---------------------- scripts/dev/run_vulture.py | 2 - 3 files changed, 66 deletions(-) delete mode 100644 scripts/dev/pylint_checkers/qute_pylint/modeline.py diff --git a/.pylintrc b/.pylintrc index b5a391288..6692c0fb2 100644 --- a/.pylintrc +++ b/.pylintrc @@ -4,7 +4,6 @@ ignore=resources.py extension-pkg-whitelist=PyQt5,sip load-plugins=qute_pylint.config, - qute_pylint.modeline, pylint.extensions.docstyle, pylint.extensions.emptystring, pylint.extensions.overlapping_exceptions, diff --git a/scripts/dev/pylint_checkers/qute_pylint/modeline.py b/scripts/dev/pylint_checkers/qute_pylint/modeline.py deleted file mode 100644 index 1df2c375e..000000000 --- a/scripts/dev/pylint_checkers/qute_pylint/modeline.py +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2014-2021 Florian Bruhin (The Compiler) -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - -# This file is part of qutebrowser. -# -# qutebrowser is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# qutebrowser is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with qutebrowser. If not, see . - -"""Checker for vim modelines in files.""" - -import os.path -import contextlib - -from pylint import interfaces, checkers - - -class ModelineChecker(checkers.BaseChecker): - - """Check for vim modelines in files.""" - - __implements__ = interfaces.IRawChecker - - name = 'modeline' - msgs = {'W9102': ('Does not have vim modeline', 'modeline-missing', None), - 'W9103': ('Modeline is invalid', 'invalid-modeline', None), - 'W9104': ('Modeline position is wrong', 'modeline-position', None)} - options = () - priority = -1 - - def process_module(self, node): - """Process the module.""" - if os.path.basename(os.path.splitext(node.file)[0]) == '__init__': - return - max_lineno = 1 - with contextlib.closing(node.stream()) as stream: - for (lineno, line) in enumerate(stream): - if lineno == 1 and line.startswith(b'#!'): - max_lineno += 1 - continue - elif line.startswith(b'# vim:'): - if lineno > max_lineno: - self.add_message('modeline-position', line=lineno) - if (line.rstrip() != b'# vim: ft=python ' - b'fileencoding=utf-8 sts=4 sw=4 et:'): - self.add_message('invalid-modeline', line=lineno) - break - else: - self.add_message('modeline-missing', line=1) - - -def register(linter): - """Register the checker.""" - linter.register_checker(ModelineChecker(linter)) diff --git a/scripts/dev/run_vulture.py b/scripts/dev/run_vulture.py index b4b46fdb3..0bbfb3bfa 100755 --- a/scripts/dev/run_vulture.py +++ b/scripts/dev/run_vulture.py @@ -100,8 +100,6 @@ def whitelist_generator(): # noqa: C901 for attr in ['msgs', 'priority', 'visit_attribute']: yield 'scripts.dev.pylint_checkers.config.' + attr - for attr in ['visit_call', 'process_module']: - yield 'scripts.dev.pylint_checkers.modeline.' + attr for name, _member in inspect.getmembers(configtypes, inspect.isclass): yield 'qutebrowser.config.configtypes.' + name -- cgit v1.2.3-54-g00ecf From 4a31c537c252bf6bf60dd028330741bc43e4e9a1 Mon Sep 17 00:00:00 2001 From: Philipp Albrecht Date: Fri, 30 Jun 2023 10:56:55 +0200 Subject: Remove vim modeline hint from contributing docs We're deprecating vim modelines in favor of `.editorconfig`. --- doc/contributing.asciidoc | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/contributing.asciidoc b/doc/contributing.asciidoc index c2c791c89..50773f544 100644 --- a/doc/contributing.asciidoc +++ b/doc/contributing.asciidoc @@ -678,7 +678,6 @@ Return: + * The layout of a module should be roughly like this: - Shebang (`#!/usr/bin/python`, if needed) - - vim-modeline (`# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et`) - Copyright - GPL boilerplate - Module docstring -- cgit v1.2.3-54-g00ecf From d9e8b638bf6d20ff6d2179db7c105385c8ddad1d Mon Sep 17 00:00:00 2001 From: Philipp Albrecht Date: Fri, 30 Jun 2023 10:57:51 +0200 Subject: Remove vim modelines We're deprecating vim modelines in favor of `.editorconfig`. Removing vim modelines could be done using two one-liners. Most of the vim modelines were followed by an empty line, so this one-liner took care of these ones: ```sh rg '^# vim: .+\n\n' -l | xargs sed -i '/^# vim: /,+1d' ``` Then some of the vim modelines were followed by a pylint configuration line, so running this one-liner afterwards took care of that: ```sh rg '^# vim:' -l | xargs sed -i '/^# vim: /d' ``` --- .pylintrc | 2 -- qutebrowser.py | 2 -- qutebrowser/__init__.py | 2 -- qutebrowser/__main__.py | 2 -- qutebrowser/api/__init__.py | 2 -- qutebrowser/api/apitypes.py | 2 -- qutebrowser/api/cmdutils.py | 2 -- qutebrowser/api/config.py | 2 -- qutebrowser/api/downloads.py | 2 -- qutebrowser/api/hook.py | 2 -- qutebrowser/api/interceptor.py | 2 -- qutebrowser/api/message.py | 2 -- qutebrowser/api/qtutils.py | 2 -- qutebrowser/app.py | 2 -- qutebrowser/browser/__init__.py | 2 -- qutebrowser/browser/browsertab.py | 2 -- qutebrowser/browser/commands.py | 2 -- qutebrowser/browser/downloads.py | 2 -- qutebrowser/browser/downloadview.py | 2 -- qutebrowser/browser/eventfilter.py | 2 -- qutebrowser/browser/greasemonkey.py | 2 -- qutebrowser/browser/hints.py | 2 -- qutebrowser/browser/history.py | 2 -- qutebrowser/browser/inspector.py | 2 -- qutebrowser/browser/navigate.py | 2 -- qutebrowser/browser/network/__init__.py | 2 -- qutebrowser/browser/network/pac.py | 2 -- qutebrowser/browser/network/proxy.py | 2 -- qutebrowser/browser/pdfjs.py | 2 -- qutebrowser/browser/qtnetworkdownloads.py | 2 -- qutebrowser/browser/qutescheme.py | 2 -- qutebrowser/browser/shared.py | 2 -- qutebrowser/browser/signalfilter.py | 2 -- qutebrowser/browser/urlmarks.py | 2 -- qutebrowser/browser/webelem.py | 2 -- qutebrowser/browser/webengine/__init__.py | 2 -- qutebrowser/browser/webengine/certificateerror.py | 2 -- qutebrowser/browser/webengine/cookies.py | 2 -- qutebrowser/browser/webengine/darkmode.py | 2 -- qutebrowser/browser/webengine/interceptor.py | 2 -- qutebrowser/browser/webengine/notification.py | 2 -- qutebrowser/browser/webengine/spell.py | 2 -- qutebrowser/browser/webengine/tabhistory.py | 2 -- qutebrowser/browser/webengine/webenginedownloads.py | 2 -- qutebrowser/browser/webengine/webengineelem.py | 2 -- qutebrowser/browser/webengine/webengineinspector.py | 2 -- qutebrowser/browser/webengine/webenginequtescheme.py | 2 -- qutebrowser/browser/webengine/webenginesettings.py | 2 -- qutebrowser/browser/webengine/webenginetab.py | 2 -- qutebrowser/browser/webengine/webview.py | 2 -- qutebrowser/browser/webkit/__init__.py | 2 -- qutebrowser/browser/webkit/cache.py | 2 -- qutebrowser/browser/webkit/certificateerror.py | 2 -- qutebrowser/browser/webkit/cookies.py | 2 -- qutebrowser/browser/webkit/http.py | 2 -- qutebrowser/browser/webkit/mhtml.py | 2 -- qutebrowser/browser/webkit/network/__init__.py | 2 -- qutebrowser/browser/webkit/network/filescheme.py | 2 -- qutebrowser/browser/webkit/network/networkmanager.py | 2 -- qutebrowser/browser/webkit/network/networkreply.py | 2 -- qutebrowser/browser/webkit/network/webkitqutescheme.py | 2 -- qutebrowser/browser/webkit/tabhistory.py | 2 -- qutebrowser/browser/webkit/webkitelem.py | 2 -- qutebrowser/browser/webkit/webkithistory.py | 2 -- qutebrowser/browser/webkit/webkitinspector.py | 2 -- qutebrowser/browser/webkit/webkitsettings.py | 2 -- qutebrowser/browser/webkit/webkittab.py | 2 -- qutebrowser/browser/webkit/webpage.py | 2 -- qutebrowser/browser/webkit/webview.py | 2 -- qutebrowser/commands/__init__.py | 2 -- qutebrowser/commands/argparser.py | 2 -- qutebrowser/commands/cmdexc.py | 2 -- qutebrowser/commands/command.py | 2 -- qutebrowser/commands/parser.py | 2 -- qutebrowser/commands/runners.py | 2 -- qutebrowser/commands/userscripts.py | 2 -- qutebrowser/completion/__init__.py | 2 -- qutebrowser/completion/completer.py | 2 -- qutebrowser/completion/completiondelegate.py | 2 -- qutebrowser/completion/completionwidget.py | 2 -- qutebrowser/completion/models/__init__.py | 2 -- qutebrowser/completion/models/completionmodel.py | 2 -- qutebrowser/completion/models/configmodel.py | 2 -- qutebrowser/completion/models/filepathcategory.py | 2 -- qutebrowser/completion/models/histcategory.py | 2 -- qutebrowser/completion/models/listcategory.py | 2 -- qutebrowser/completion/models/miscmodels.py | 2 -- qutebrowser/completion/models/urlmodel.py | 2 -- qutebrowser/completion/models/util.py | 2 -- qutebrowser/components/__init__.py | 2 -- qutebrowser/components/adblockcommands.py | 2 -- qutebrowser/components/braveadblock.py | 2 -- qutebrowser/components/caretcommands.py | 2 -- qutebrowser/components/hostblock.py | 2 -- qutebrowser/components/misccommands.py | 2 -- qutebrowser/components/readlinecommands.py | 2 -- qutebrowser/components/scrollcommands.py | 2 -- qutebrowser/components/utils/blockutils.py | 2 -- qutebrowser/components/zoomcommands.py | 2 -- qutebrowser/config/__init__.py | 2 -- qutebrowser/config/config.py | 2 -- qutebrowser/config/configcache.py | 2 -- qutebrowser/config/configcommands.py | 2 -- qutebrowser/config/configdata.py | 2 -- qutebrowser/config/configexc.py | 2 -- qutebrowser/config/configfiles.py | 2 -- qutebrowser/config/configinit.py | 2 -- qutebrowser/config/configtypes.py | 2 -- qutebrowser/config/configutils.py | 2 -- qutebrowser/config/qtargs.py | 2 -- qutebrowser/config/stylesheet.py | 2 -- qutebrowser/config/websettings.py | 2 -- qutebrowser/extensions/interceptors.py | 2 -- qutebrowser/extensions/loader.py | 2 -- qutebrowser/keyinput/__init__.py | 2 -- qutebrowser/keyinput/basekeyparser.py | 2 -- qutebrowser/keyinput/eventfilter.py | 2 -- qutebrowser/keyinput/keyutils.py | 2 -- qutebrowser/keyinput/macros.py | 2 -- qutebrowser/keyinput/modeman.py | 2 -- qutebrowser/keyinput/modeparsers.py | 2 -- qutebrowser/mainwindow/__init__.py | 2 -- qutebrowser/mainwindow/mainwindow.py | 2 -- qutebrowser/mainwindow/messageview.py | 2 -- qutebrowser/mainwindow/prompt.py | 2 -- qutebrowser/mainwindow/statusbar/__init__.py | 2 -- qutebrowser/mainwindow/statusbar/backforward.py | 2 -- qutebrowser/mainwindow/statusbar/bar.py | 2 -- qutebrowser/mainwindow/statusbar/clock.py | 2 -- qutebrowser/mainwindow/statusbar/command.py | 2 -- qutebrowser/mainwindow/statusbar/keystring.py | 2 -- qutebrowser/mainwindow/statusbar/percentage.py | 2 -- qutebrowser/mainwindow/statusbar/progress.py | 2 -- qutebrowser/mainwindow/statusbar/searchmatch.py | 2 -- qutebrowser/mainwindow/statusbar/tabindex.py | 2 -- qutebrowser/mainwindow/statusbar/textbase.py | 2 -- qutebrowser/mainwindow/statusbar/url.py | 2 -- qutebrowser/mainwindow/tabbedbrowser.py | 2 -- qutebrowser/mainwindow/tabwidget.py | 2 -- qutebrowser/mainwindow/windowundo.py | 2 -- qutebrowser/misc/__init__.py | 2 -- qutebrowser/misc/autoupdate.py | 2 -- qutebrowser/misc/backendproblem.py | 2 -- qutebrowser/misc/checkpyver.py | 2 -- qutebrowser/misc/cmdhistory.py | 2 -- qutebrowser/misc/consolewidget.py | 2 -- qutebrowser/misc/crashdialog.py | 2 -- qutebrowser/misc/crashsignal.py | 2 -- qutebrowser/misc/debugcachestats.py | 2 -- qutebrowser/misc/earlyinit.py | 2 -- qutebrowser/misc/editor.py | 2 -- qutebrowser/misc/elf.py | 2 -- qutebrowser/misc/guiprocess.py | 2 -- qutebrowser/misc/httpclient.py | 2 -- qutebrowser/misc/ipc.py | 2 -- qutebrowser/misc/keyhintwidget.py | 2 -- qutebrowser/misc/lineparser.py | 2 -- qutebrowser/misc/miscwidgets.py | 2 -- qutebrowser/misc/msgbox.py | 2 -- qutebrowser/misc/nativeeventfilter.py | 2 -- qutebrowser/misc/objects.py | 2 -- qutebrowser/misc/pastebin.py | 2 -- qutebrowser/misc/quitter.py | 2 -- qutebrowser/misc/savemanager.py | 2 -- qutebrowser/misc/sessions.py | 2 -- qutebrowser/misc/split.py | 2 -- qutebrowser/misc/sql.py | 2 -- qutebrowser/misc/throttle.py | 2 -- qutebrowser/misc/utilcmds.py | 2 -- qutebrowser/qt/core.py | 1 - qutebrowser/qt/dbus.py | 1 - qutebrowser/qt/gui.py | 1 - qutebrowser/qt/machinery.py | 1 - qutebrowser/qt/network.py | 1 - qutebrowser/qt/opengl.py | 1 - qutebrowser/qt/printsupport.py | 1 - qutebrowser/qt/qml.py | 1 - qutebrowser/qt/sip.py | 1 - qutebrowser/qt/sql.py | 1 - qutebrowser/qt/test.py | 1 - qutebrowser/qt/webenginecore.py | 1 - qutebrowser/qt/webenginewidgets.py | 1 - qutebrowser/qt/webkit.py | 1 - qutebrowser/qt/webkitwidgets.py | 1 - qutebrowser/qt/widgets.py | 1 - qutebrowser/qutebrowser.py | 2 -- qutebrowser/utils/__init__.py | 2 -- qutebrowser/utils/debug.py | 2 -- qutebrowser/utils/docutils.py | 2 -- qutebrowser/utils/error.py | 2 -- qutebrowser/utils/javascript.py | 2 -- qutebrowser/utils/jinja.py | 2 -- qutebrowser/utils/log.py | 2 -- qutebrowser/utils/message.py | 2 -- qutebrowser/utils/objreg.py | 2 -- qutebrowser/utils/qtutils.py | 2 -- qutebrowser/utils/resources.py | 2 -- qutebrowser/utils/standarddir.py | 2 -- qutebrowser/utils/urlmatch.py | 2 -- qutebrowser/utils/urlutils.py | 2 -- qutebrowser/utils/usertypes.py | 2 -- qutebrowser/utils/utils.py | 2 -- qutebrowser/utils/version.py | 2 -- scripts/__init__.py | 2 -- scripts/asciidoc2html.py | 2 -- scripts/dev/__init__.py | 2 -- scripts/dev/build_pyqt_wheel.py | 2 -- scripts/dev/build_release.py | 2 -- scripts/dev/change_release.py | 2 -- scripts/dev/check_coverage.py | 2 -- scripts/dev/check_doc_changes.py | 2 -- scripts/dev/ci/docker/generate.py | 2 -- scripts/dev/ci/problemmatchers.py | 2 -- scripts/dev/cleanup.py | 2 -- scripts/dev/gen_versioninfo.py | 2 -- scripts/dev/get_coredumpctl_traces.py | 2 -- scripts/dev/misc_checks.py | 2 -- scripts/dev/pylint_checkers/qute_pylint/config.py | 2 -- scripts/dev/pylint_checkers/setup.py | 2 -- scripts/dev/recompile_requirements.py | 2 -- scripts/dev/rewrite_enums.py | 2 -- scripts/dev/rewrite_find_enums.py | 2 -- scripts/dev/rewrite_find_flags.py | 2 -- scripts/dev/run_profile.py | 2 -- scripts/dev/run_pylint_on_tests.py | 2 -- scripts/dev/run_shellcheck.sh | 2 -- scripts/dev/run_vulture.py | 2 -- scripts/dev/src2asciidoc.py | 2 -- scripts/dev/standardpaths_tester.py | 2 -- scripts/dev/ua_fetch.py | 2 -- scripts/dev/update_3rdparty.py | 2 -- scripts/dev/update_version.py | 2 -- scripts/dictcli.py | 2 -- scripts/hist_importer.py | 2 -- scripts/hostblock_blame.py | 2 -- scripts/importer.py | 2 -- scripts/keytester.py | 2 -- scripts/link_pyqt.py | 2 -- scripts/mkvenv.py | 2 -- scripts/opengl_info.py | 2 -- scripts/setupcommon.py | 2 -- scripts/testbrowser/testbrowser_webengine.py | 2 -- scripts/testbrowser/testbrowser_webkit.py | 2 -- scripts/utils.py | 2 -- setup.py | 2 -- tests/conftest.py | 2 -- tests/end2end/conftest.py | 2 -- tests/end2end/data/brave-adblock/generate.py | 2 -- tests/end2end/data/misc/pyeval_file.py | 2 -- tests/end2end/data/userscripts/stdinclose.py | 2 -- tests/end2end/features/backforward.feature | 2 -- tests/end2end/features/caret.feature | 2 -- tests/end2end/features/completion.feature | 2 -- tests/end2end/features/conftest.py | 2 -- tests/end2end/features/downloads.feature | 2 -- tests/end2end/features/editor.feature | 2 -- tests/end2end/features/hints.feature | 2 -- tests/end2end/features/history.feature | 2 -- tests/end2end/features/invoke.feature | 2 -- tests/end2end/features/javascript.feature | 2 -- tests/end2end/features/keyinput.feature | 2 -- tests/end2end/features/marks.feature | 2 -- tests/end2end/features/misc.feature | 2 -- tests/end2end/features/navigate.feature | 2 -- tests/end2end/features/notifications.feature | 2 -- tests/end2end/features/open.feature | 2 -- tests/end2end/features/private.feature | 2 -- tests/end2end/features/prompts.feature | 2 -- tests/end2end/features/qutescheme.feature | 2 -- tests/end2end/features/scroll.feature | 2 -- tests/end2end/features/search.feature | 2 -- tests/end2end/features/sessions.feature | 2 -- tests/end2end/features/spawn.feature | 2 -- tests/end2end/features/tabs.feature | 2 -- tests/end2end/features/test_backforward_bdd.py | 2 -- tests/end2end/features/test_caret_bdd.py | 2 -- tests/end2end/features/test_completion_bdd.py | 2 -- tests/end2end/features/test_downloads_bdd.py | 2 -- tests/end2end/features/test_editor_bdd.py | 2 -- tests/end2end/features/test_hints_bdd.py | 2 -- tests/end2end/features/test_history_bdd.py | 2 -- tests/end2end/features/test_invoke_bdd.py | 2 -- tests/end2end/features/test_javascript_bdd.py | 2 -- tests/end2end/features/test_keyinput_bdd.py | 2 -- tests/end2end/features/test_marks_bdd.py | 2 -- tests/end2end/features/test_misc_bdd.py | 2 -- tests/end2end/features/test_navigate_bdd.py | 2 -- tests/end2end/features/test_notifications_bdd.py | 2 -- tests/end2end/features/test_open_bdd.py | 2 -- tests/end2end/features/test_private_bdd.py | 2 -- tests/end2end/features/test_prompts_bdd.py | 2 -- tests/end2end/features/test_qutescheme_bdd.py | 2 -- tests/end2end/features/test_scroll_bdd.py | 2 -- tests/end2end/features/test_search_bdd.py | 2 -- tests/end2end/features/test_sessions_bdd.py | 2 -- tests/end2end/features/test_spawn_bdd.py | 2 -- tests/end2end/features/test_tabs_bdd.py | 2 -- tests/end2end/features/test_urlmarks_bdd.py | 2 -- tests/end2end/features/test_utilcmds_bdd.py | 2 -- tests/end2end/features/test_yankpaste_bdd.py | 2 -- tests/end2end/features/test_zoom_bdd.py | 2 -- tests/end2end/features/urlmarks.feature | 2 -- tests/end2end/features/utilcmds.feature | 2 -- tests/end2end/features/yankpaste.feature | 2 -- tests/end2end/features/zoom.feature | 2 -- tests/end2end/fixtures/notificationserver.py | 2 -- tests/end2end/fixtures/quteprocess.py | 2 -- tests/end2end/fixtures/test_quteprocess.py | 2 -- tests/end2end/fixtures/test_testprocess.py | 2 -- tests/end2end/fixtures/test_webserver.py | 2 -- tests/end2end/fixtures/testprocess.py | 2 -- tests/end2end/fixtures/webserver.py | 2 -- tests/end2end/fixtures/webserver_sub.py | 2 -- tests/end2end/fixtures/webserver_sub_ssl.py | 2 -- tests/end2end/misc/test_runners_e2e.py | 2 -- tests/end2end/test_adblock_e2e.py | 2 -- tests/end2end/test_dirbrowser.py | 2 -- tests/end2end/test_hints_html.py | 2 -- tests/end2end/test_insert_mode.py | 2 -- tests/end2end/test_invocations.py | 2 -- tests/end2end/test_mhtml_e2e.py | 2 -- tests/helpers/fixtures.py | 2 -- tests/helpers/logfail.py | 2 -- tests/helpers/messagemock.py | 2 -- tests/helpers/stubs.py | 2 -- tests/helpers/test_helper_utils.py | 2 -- tests/helpers/test_logfail.py | 2 -- tests/helpers/test_stubs.py | 2 -- tests/helpers/testutils.py | 2 -- tests/test_conftest.py | 2 -- tests/unit/api/test_cmdutils.py | 2 -- tests/unit/browser/test_browsertab.py | 2 -- tests/unit/browser/test_caret.py | 2 -- tests/unit/browser/test_downloads.py | 2 -- tests/unit/browser/test_downloadview.py | 2 -- tests/unit/browser/test_hints.py | 2 -- tests/unit/browser/test_history.py | 2 -- tests/unit/browser/test_inspector.py | 2 -- tests/unit/browser/test_navigate.py | 2 -- tests/unit/browser/test_notification.py | 2 -- tests/unit/browser/test_pdfjs.py | 2 -- tests/unit/browser/test_qutescheme.py | 2 -- tests/unit/browser/test_shared.py | 2 -- tests/unit/browser/test_signalfilter.py | 2 -- tests/unit/browser/test_urlmarks.py | 2 -- tests/unit/browser/webengine/test_darkmode.py | 1 - tests/unit/browser/webengine/test_spell.py | 2 -- tests/unit/browser/webengine/test_webengine_cookies.py | 2 -- tests/unit/browser/webengine/test_webenginedownloads.py | 2 -- tests/unit/browser/webengine/test_webengineinterceptor.py | 2 -- tests/unit/browser/webengine/test_webenginesettings.py | 2 -- tests/unit/browser/webengine/test_webenginetab.py | 2 -- tests/unit/browser/webengine/test_webview.py | 2 -- tests/unit/browser/webkit/http/test_content_disposition.py | 2 -- tests/unit/browser/webkit/http/test_http.py | 2 -- tests/unit/browser/webkit/network/test_filescheme.py | 2 -- tests/unit/browser/webkit/network/test_networkmanager.py | 2 -- tests/unit/browser/webkit/network/test_networkreply.py | 2 -- tests/unit/browser/webkit/network/test_pac.py | 2 -- tests/unit/browser/webkit/test_cache.py | 2 -- tests/unit/browser/webkit/test_certificateerror.py | 2 -- tests/unit/browser/webkit/test_cookies.py | 2 -- tests/unit/browser/webkit/test_mhtml.py | 2 -- tests/unit/browser/webkit/test_tabhistory.py | 2 -- tests/unit/browser/webkit/test_webkit_view.py | 2 -- tests/unit/browser/webkit/test_webkitelem.py | 2 -- tests/unit/browser/webkit/test_webkitsettings.py | 2 -- tests/unit/commands/test_argparser.py | 2 -- tests/unit/commands/test_cmdexc.py | 2 -- tests/unit/commands/test_parser.py | 2 -- tests/unit/commands/test_userscripts.py | 2 -- tests/unit/completion/test_completer.py | 2 -- tests/unit/completion/test_completiondelegate.py | 2 -- tests/unit/completion/test_completionmodel.py | 2 -- tests/unit/completion/test_completionwidget.py | 2 -- tests/unit/completion/test_histcategory.py | 2 -- tests/unit/completion/test_listcategory.py | 2 -- tests/unit/completion/test_models.py | 2 -- tests/unit/components/test_blockutils.py | 1 - tests/unit/components/test_braveadblock.py | 2 -- tests/unit/components/test_hostblock.py | 1 - tests/unit/components/test_misccommands.py | 2 -- tests/unit/components/test_readlinecommands.py | 2 -- tests/unit/config/test_config.py | 1 - tests/unit/config/test_configcache.py | 2 -- tests/unit/config/test_configcommands.py | 1 - tests/unit/config/test_configdata.py | 1 - tests/unit/config/test_configexc.py | 1 - tests/unit/config/test_configfiles.py | 1 - tests/unit/config/test_configinit.py | 1 - tests/unit/config/test_configtypes.py | 1 - tests/unit/config/test_configutils.py | 2 -- tests/unit/config/test_qtargs.py | 1 - tests/unit/config/test_qtargs_locale_workaround.py | 1 - tests/unit/config/test_stylesheet.py | 1 - tests/unit/config/test_websettings.py | 2 -- tests/unit/extensions/test_loader.py | 2 -- tests/unit/javascript/conftest.py | 2 -- tests/unit/javascript/position_caret/test_position_caret.py | 2 -- tests/unit/javascript/stylesheet/test_stylesheet_js.py | 2 -- tests/unit/javascript/test_greasemonkey.py | 1 - tests/unit/javascript/test_js_execution.py | 2 -- tests/unit/javascript/test_js_quirks.py | 2 -- tests/unit/keyinput/conftest.py | 2 -- tests/unit/keyinput/key_data.py | 2 -- tests/unit/keyinput/test_basekeyparser.py | 2 -- tests/unit/keyinput/test_bindingtrie.py | 2 -- tests/unit/keyinput/test_keyutils.py | 2 -- tests/unit/keyinput/test_modeman.py | 2 -- tests/unit/keyinput/test_modeparsers.py | 2 -- tests/unit/mainwindow/statusbar/test_backforward.py | 2 -- tests/unit/mainwindow/statusbar/test_percentage.py | 2 -- tests/unit/mainwindow/statusbar/test_progress.py | 2 -- tests/unit/mainwindow/statusbar/test_tabindex.py | 2 -- tests/unit/mainwindow/statusbar/test_textbase.py | 2 -- tests/unit/mainwindow/statusbar/test_url.py | 2 -- tests/unit/mainwindow/test_messageview.py | 2 -- tests/unit/mainwindow/test_prompt.py | 2 -- tests/unit/mainwindow/test_tabbedbrowser.py | 2 -- tests/unit/mainwindow/test_tabwidget.py | 2 -- tests/unit/misc/test_autoupdate.py | 2 -- tests/unit/misc/test_checkpyver.py | 2 -- tests/unit/misc/test_cmdhistory.py | 2 -- tests/unit/misc/test_crashdialog.py | 2 -- tests/unit/misc/test_earlyinit.py | 2 -- tests/unit/misc/test_editor.py | 2 -- tests/unit/misc/test_elf.py | 2 -- tests/unit/misc/test_guiprocess.py | 2 -- tests/unit/misc/test_ipc.py | 2 -- tests/unit/misc/test_keyhints.py | 2 -- tests/unit/misc/test_lineparser.py | 2 -- tests/unit/misc/test_miscwidgets.py | 2 -- tests/unit/misc/test_msgbox.py | 2 -- tests/unit/misc/test_objects.py | 2 -- tests/unit/misc/test_pastebin.py | 2 -- tests/unit/misc/test_sessions.py | 2 -- tests/unit/misc/test_split.py | 2 -- tests/unit/misc/test_split_hypothesis.py | 2 -- tests/unit/misc/test_sql.py | 2 -- tests/unit/misc/test_throttle.py | 2 -- tests/unit/misc/test_utilcmds.py | 2 -- tests/unit/misc/userscripts/test_qute_lastpass.py | 2 -- tests/unit/scripts/test_check_coverage.py | 2 -- tests/unit/scripts/test_dictcli.py | 2 -- tests/unit/scripts/test_importer.py | 2 -- tests/unit/scripts/test_problemmatchers.py | 2 -- tests/unit/scripts/test_run_vulture.py | 2 -- tests/unit/test_app.py | 2 -- tests/unit/test_qt_machinery.py | 2 -- tests/unit/test_qutebrowser.py | 2 -- tests/unit/utils/overflow_test_cases.py | 2 -- tests/unit/utils/test_debug.py | 2 -- tests/unit/utils/test_error.py | 2 -- tests/unit/utils/test_javascript.py | 2 -- tests/unit/utils/test_jinja.py | 2 -- tests/unit/utils/test_log.py | 2 -- tests/unit/utils/test_qtutils.py | 2 -- tests/unit/utils/test_resources.py | 2 -- tests/unit/utils/test_standarddir.py | 2 -- tests/unit/utils/test_urlmatch.py | 2 -- tests/unit/utils/test_urlutils.py | 2 -- tests/unit/utils/test_utils.py | 2 -- tests/unit/utils/test_version.py | 2 -- tests/unit/utils/usertypes/test_misc.py | 2 -- tests/unit/utils/usertypes/test_neighborlist.py | 2 -- tests/unit/utils/usertypes/test_question.py | 2 -- tests/unit/utils/usertypes/test_timer.py | 2 -- 467 files changed, 904 deletions(-) diff --git a/.pylintrc b/.pylintrc index 6692c0fb2..f89e3fa50 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,5 +1,3 @@ -# vim: ft=dosini fileencoding=utf-8: - [MASTER] ignore=resources.py extension-pkg-whitelist=PyQt5,sip diff --git a/qutebrowser.py b/qutebrowser.py index 89ea27dcb..be31f1255 100755 --- a/qutebrowser.py +++ b/qutebrowser.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/__init__.py b/qutebrowser/__init__.py index ad65ac371..b972ddf08 100644 --- a/qutebrowser/__init__.py +++ b/qutebrowser/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/__main__.py b/qutebrowser/__main__.py index 89ea27dcb..be31f1255 100644 --- a/qutebrowser/__main__.py +++ b/qutebrowser/__main__.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/__init__.py b/qutebrowser/api/__init__.py index 15f4f8f0f..3c002352c 100644 --- a/qutebrowser/api/__init__.py +++ b/qutebrowser/api/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/apitypes.py b/qutebrowser/api/apitypes.py index cbbd4467c..a0d305ec7 100644 --- a/qutebrowser/api/apitypes.py +++ b/qutebrowser/api/apitypes.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/cmdutils.py b/qutebrowser/api/cmdutils.py index 3e1bc9432..15dfcb310 100644 --- a/qutebrowser/api/cmdutils.py +++ b/qutebrowser/api/cmdutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/config.py b/qutebrowser/api/config.py index fd0890602..c156c9c58 100644 --- a/qutebrowser/api/config.py +++ b/qutebrowser/api/config.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/downloads.py b/qutebrowser/api/downloads.py index 85f5b8b91..8d69bfc91 100644 --- a/qutebrowser/api/downloads.py +++ b/qutebrowser/api/downloads.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/hook.py b/qutebrowser/api/hook.py index 884d6c67f..b17d9492a 100644 --- a/qutebrowser/api/hook.py +++ b/qutebrowser/api/hook.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/interceptor.py b/qutebrowser/api/interceptor.py index edbfe36a7..30334eeec 100644 --- a/qutebrowser/api/interceptor.py +++ b/qutebrowser/api/interceptor.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/message.py b/qutebrowser/api/message.py index 068d06a38..87f60be9c 100644 --- a/qutebrowser/api/message.py +++ b/qutebrowser/api/message.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/api/qtutils.py b/qutebrowser/api/qtutils.py index c404530ba..2ca3c5244 100644 --- a/qutebrowser/api/qtutils.py +++ b/qutebrowser/api/qtutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/app.py b/qutebrowser/app.py index 664fb4fa9..49488975a 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/__init__.py b/qutebrowser/browser/__init__.py index 340069bcf..e736eafd9 100644 --- a/qutebrowser/browser/__init__.py +++ b/qutebrowser/browser/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/browsertab.py b/qutebrowser/browser/browsertab.py index ae411a12a..a11117e50 100644 --- a/qutebrowser/browser/browsertab.py +++ b/qutebrowser/browser/browsertab.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 84f217a38..8fd3fc787 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/downloads.py b/qutebrowser/browser/downloads.py index 8ce0ca1b2..e7e53c33a 100644 --- a/qutebrowser/browser/downloads.py +++ b/qutebrowser/browser/downloads.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/downloadview.py b/qutebrowser/browser/downloadview.py index da0763b76..f4790bc9f 100644 --- a/qutebrowser/browser/downloadview.py +++ b/qutebrowser/browser/downloadview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/eventfilter.py b/qutebrowser/browser/eventfilter.py index 616798f9b..a76ccd6d5 100644 --- a/qutebrowser/browser/eventfilter.py +++ b/qutebrowser/browser/eventfilter.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/greasemonkey.py b/qutebrowser/browser/greasemonkey.py index a0cdf0fcc..2c8aebbdc 100644 --- a/qutebrowser/browser/greasemonkey.py +++ b/qutebrowser/browser/greasemonkey.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/hints.py b/qutebrowser/browser/hints.py index 8fe75f271..48534c54c 100644 --- a/qutebrowser/browser/hints.py +++ b/qutebrowser/browser/hints.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/history.py b/qutebrowser/browser/history.py index fa0e3e173..c0b23040c 100644 --- a/qutebrowser/browser/history.py +++ b/qutebrowser/browser/history.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/inspector.py b/qutebrowser/browser/inspector.py index dcf718552..a2ce67750 100644 --- a/qutebrowser/browser/inspector.py +++ b/qutebrowser/browser/inspector.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/navigate.py b/qutebrowser/browser/navigate.py index 148f0f6e9..b73e36e8d 100644 --- a/qutebrowser/browser/navigate.py +++ b/qutebrowser/browser/navigate.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/network/__init__.py b/qutebrowser/browser/network/__init__.py index c3d713ac2..92c677c29 100644 --- a/qutebrowser/browser/network/__init__.py +++ b/qutebrowser/browser/network/__init__.py @@ -1,3 +1 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - """Modules related to network operations.""" diff --git a/qutebrowser/browser/network/pac.py b/qutebrowser/browser/network/pac.py index c372c6eea..b6ed6040f 100644 --- a/qutebrowser/browser/network/pac.py +++ b/qutebrowser/browser/network/pac.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/network/proxy.py b/qutebrowser/browser/network/proxy.py index 3261d0d86..714823d2c 100644 --- a/qutebrowser/browser/network/proxy.py +++ b/qutebrowser/browser/network/proxy.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/pdfjs.py b/qutebrowser/browser/pdfjs.py index 737a9cc87..845ff5f9c 100644 --- a/qutebrowser/browser/pdfjs.py +++ b/qutebrowser/browser/pdfjs.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # Copyright 2015 Daniel Schadt # diff --git a/qutebrowser/browser/qtnetworkdownloads.py b/qutebrowser/browser/qtnetworkdownloads.py index 242565a39..cd4a75351 100644 --- a/qutebrowser/browser/qtnetworkdownloads.py +++ b/qutebrowser/browser/qtnetworkdownloads.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/qutescheme.py b/qutebrowser/browser/qutescheme.py index 77be4ffda..25834670b 100644 --- a/qutebrowser/browser/qutescheme.py +++ b/qutebrowser/browser/qutescheme.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/shared.py b/qutebrowser/browser/shared.py index 92ed99584..567c1f7bc 100644 --- a/qutebrowser/browser/shared.py +++ b/qutebrowser/browser/shared.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/signalfilter.py b/qutebrowser/browser/signalfilter.py index beb91e70a..e1584bd1b 100644 --- a/qutebrowser/browser/signalfilter.py +++ b/qutebrowser/browser/signalfilter.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/urlmarks.py b/qutebrowser/browser/urlmarks.py index 0d30f7973..2ae8fbbe1 100644 --- a/qutebrowser/browser/urlmarks.py +++ b/qutebrowser/browser/urlmarks.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Antoni Boucher # diff --git a/qutebrowser/browser/webelem.py b/qutebrowser/browser/webelem.py index 672c73fdb..8d1d61b80 100644 --- a/qutebrowser/browser/webelem.py +++ b/qutebrowser/browser/webelem.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/__init__.py b/qutebrowser/browser/webengine/__init__.py index e86e96d39..385f7f89c 100644 --- a/qutebrowser/browser/webengine/__init__.py +++ b/qutebrowser/browser/webengine/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/certificateerror.py b/qutebrowser/browser/webengine/certificateerror.py index 0dbd91ccb..2201492c9 100644 --- a/qutebrowser/browser/webengine/certificateerror.py +++ b/qutebrowser/browser/webengine/certificateerror.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/cookies.py b/qutebrowser/browser/webengine/cookies.py index 3a5a621cc..49af750cb 100644 --- a/qutebrowser/browser/webengine/cookies.py +++ b/qutebrowser/browser/webengine/cookies.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/darkmode.py b/qutebrowser/browser/webengine/darkmode.py index 4bf6990a0..d67aa1d29 100644 --- a/qutebrowser/browser/webengine/darkmode.py +++ b/qutebrowser/browser/webengine/darkmode.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/interceptor.py b/qutebrowser/browser/webengine/interceptor.py index bd1feaad1..f6feacf5f 100644 --- a/qutebrowser/browser/webengine/interceptor.py +++ b/qutebrowser/browser/webengine/interceptor.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/notification.py b/qutebrowser/browser/webengine/notification.py index f91d146d8..9b73de11f 100644 --- a/qutebrowser/browser/webengine/notification.py +++ b/qutebrowser/browser/webengine/notification.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/spell.py b/qutebrowser/browser/webengine/spell.py index 06c613d9b..09913a927 100644 --- a/qutebrowser/browser/webengine/spell.py +++ b/qutebrowser/browser/webengine/spell.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # Copyright 2017-2018 Michal Siedlaczek diff --git a/qutebrowser/browser/webengine/tabhistory.py b/qutebrowser/browser/webengine/tabhistory.py index 6efc6a2aa..30f3facdb 100644 --- a/qutebrowser/browser/webengine/tabhistory.py +++ b/qutebrowser/browser/webengine/tabhistory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webenginedownloads.py b/qutebrowser/browser/webengine/webenginedownloads.py index 2ac3dbdc3..eb4f1c9a1 100644 --- a/qutebrowser/browser/webengine/webenginedownloads.py +++ b/qutebrowser/browser/webengine/webenginedownloads.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webengineelem.py b/qutebrowser/browser/webengine/webengineelem.py index 2e348055c..7e5da7b8b 100644 --- a/qutebrowser/browser/webengine/webengineelem.py +++ b/qutebrowser/browser/webengine/webengineelem.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webengineinspector.py b/qutebrowser/browser/webengine/webengineinspector.py index 67158af1c..640d35d6c 100644 --- a/qutebrowser/browser/webengine/webengineinspector.py +++ b/qutebrowser/browser/webengine/webengineinspector.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webenginequtescheme.py b/qutebrowser/browser/webengine/webenginequtescheme.py index 6fb809f6d..38d4eea10 100644 --- a/qutebrowser/browser/webengine/webenginequtescheme.py +++ b/qutebrowser/browser/webengine/webenginequtescheme.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webenginesettings.py b/qutebrowser/browser/webengine/webenginesettings.py index 8a8c4766f..5e83935ca 100644 --- a/qutebrowser/browser/webengine/webenginesettings.py +++ b/qutebrowser/browser/webengine/webenginesettings.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webenginetab.py b/qutebrowser/browser/webengine/webenginetab.py index a1d3af6ea..fbffd3091 100644 --- a/qutebrowser/browser/webengine/webenginetab.py +++ b/qutebrowser/browser/webengine/webenginetab.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webengine/webview.py b/qutebrowser/browser/webengine/webview.py index 66968a954..9d58c0379 100644 --- a/qutebrowser/browser/webengine/webview.py +++ b/qutebrowser/browser/webengine/webview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/__init__.py b/qutebrowser/browser/webkit/__init__.py index 27492235a..f790ea02e 100644 --- a/qutebrowser/browser/webkit/__init__.py +++ b/qutebrowser/browser/webkit/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/cache.py b/qutebrowser/browser/webkit/cache.py index 2b5b07c46..2f6d1a46c 100644 --- a/qutebrowser/browser/webkit/cache.py +++ b/qutebrowser/browser/webkit/cache.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/certificateerror.py b/qutebrowser/browser/webkit/certificateerror.py index 553538193..fc7e1b652 100644 --- a/qutebrowser/browser/webkit/certificateerror.py +++ b/qutebrowser/browser/webkit/certificateerror.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/cookies.py b/qutebrowser/browser/webkit/cookies.py index fed819cee..fae546e96 100644 --- a/qutebrowser/browser/webkit/cookies.py +++ b/qutebrowser/browser/webkit/cookies.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/http.py b/qutebrowser/browser/webkit/http.py index 580c667c2..c829cb551 100644 --- a/qutebrowser/browser/webkit/http.py +++ b/qutebrowser/browser/webkit/http.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/mhtml.py b/qutebrowser/browser/webkit/mhtml.py index 56ad4fb4f..f9d260793 100644 --- a/qutebrowser/browser/webkit/mhtml.py +++ b/qutebrowser/browser/webkit/mhtml.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Daniel Schadt # diff --git a/qutebrowser/browser/webkit/network/__init__.py b/qutebrowser/browser/webkit/network/__init__.py index c3d713ac2..92c677c29 100644 --- a/qutebrowser/browser/webkit/network/__init__.py +++ b/qutebrowser/browser/webkit/network/__init__.py @@ -1,3 +1 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - """Modules related to network operations.""" diff --git a/qutebrowser/browser/webkit/network/filescheme.py b/qutebrowser/browser/webkit/network/filescheme.py index 78c511cf4..e6eef197d 100644 --- a/qutebrowser/browser/webkit/network/filescheme.py +++ b/qutebrowser/browser/webkit/network/filescheme.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Antoni Boucher (antoyo) # diff --git a/qutebrowser/browser/webkit/network/networkmanager.py b/qutebrowser/browser/webkit/network/networkmanager.py index 2bc3cad02..91e609456 100644 --- a/qutebrowser/browser/webkit/network/networkmanager.py +++ b/qutebrowser/browser/webkit/network/networkmanager.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/network/networkreply.py b/qutebrowser/browser/webkit/network/networkreply.py index 4c8e698ba..199422688 100644 --- a/qutebrowser/browser/webkit/network/networkreply.py +++ b/qutebrowser/browser/webkit/network/networkreply.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # Based on the Eric5 helpviewer, diff --git a/qutebrowser/browser/webkit/network/webkitqutescheme.py b/qutebrowser/browser/webkit/network/webkitqutescheme.py index 0c4da1a84..98e76c808 100644 --- a/qutebrowser/browser/webkit/network/webkitqutescheme.py +++ b/qutebrowser/browser/webkit/network/webkitqutescheme.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/tabhistory.py b/qutebrowser/browser/webkit/tabhistory.py index 183ffc7a9..c46feb6a1 100644 --- a/qutebrowser/browser/webkit/tabhistory.py +++ b/qutebrowser/browser/webkit/tabhistory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webkitelem.py b/qutebrowser/browser/webkit/webkitelem.py index c44f675e7..ef3e3bea5 100644 --- a/qutebrowser/browser/webkit/webkitelem.py +++ b/qutebrowser/browser/webkit/webkitelem.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webkithistory.py b/qutebrowser/browser/webkit/webkithistory.py index 549a4d545..aea648361 100644 --- a/qutebrowser/browser/webkit/webkithistory.py +++ b/qutebrowser/browser/webkit/webkithistory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webkitinspector.py b/qutebrowser/browser/webkit/webkitinspector.py index 69e1c7e24..cb9cb5615 100644 --- a/qutebrowser/browser/webkit/webkitinspector.py +++ b/qutebrowser/browser/webkit/webkitinspector.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webkitsettings.py b/qutebrowser/browser/webkit/webkitsettings.py index 87dc30327..bd65be65b 100644 --- a/qutebrowser/browser/webkit/webkitsettings.py +++ b/qutebrowser/browser/webkit/webkitsettings.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webkittab.py b/qutebrowser/browser/webkit/webkittab.py index b455f138f..a756e1a3d 100644 --- a/qutebrowser/browser/webkit/webkittab.py +++ b/qutebrowser/browser/webkit/webkittab.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webpage.py b/qutebrowser/browser/webkit/webpage.py index 2dd4551b9..27429f331 100644 --- a/qutebrowser/browser/webkit/webpage.py +++ b/qutebrowser/browser/webkit/webpage.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/browser/webkit/webview.py b/qutebrowser/browser/webkit/webview.py index aaeba4033..09a5a710a 100644 --- a/qutebrowser/browser/webkit/webview.py +++ b/qutebrowser/browser/webkit/webview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/__init__.py b/qutebrowser/commands/__init__.py index 2d196ab49..f1ff911e2 100644 --- a/qutebrowser/commands/__init__.py +++ b/qutebrowser/commands/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/argparser.py b/qutebrowser/commands/argparser.py index febfa7812..95a90b801 100644 --- a/qutebrowser/commands/argparser.py +++ b/qutebrowser/commands/argparser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/cmdexc.py b/qutebrowser/commands/cmdexc.py index 50488f1e5..b1b7b9a4f 100644 --- a/qutebrowser/commands/cmdexc.py +++ b/qutebrowser/commands/cmdexc.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/command.py b/qutebrowser/commands/command.py index cfae87958..655a5a336 100644 --- a/qutebrowser/commands/command.py +++ b/qutebrowser/commands/command.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/parser.py b/qutebrowser/commands/parser.py index 5ef46f5e5..8fb107d01 100644 --- a/qutebrowser/commands/parser.py +++ b/qutebrowser/commands/parser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/runners.py b/qutebrowser/commands/runners.py index 7cf6ab6fa..c9d1db7d0 100644 --- a/qutebrowser/commands/runners.py +++ b/qutebrowser/commands/runners.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/commands/userscripts.py b/qutebrowser/commands/userscripts.py index 17164a23a..d41f2a876 100644 --- a/qutebrowser/commands/userscripts.py +++ b/qutebrowser/commands/userscripts.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/__init__.py b/qutebrowser/completion/__init__.py index 0f86f9432..cbd0eb37c 100644 --- a/qutebrowser/completion/__init__.py +++ b/qutebrowser/completion/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/completer.py b/qutebrowser/completion/completer.py index 45c287717..62e89ef46 100644 --- a/qutebrowser/completion/completer.py +++ b/qutebrowser/completion/completer.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/completiondelegate.py b/qutebrowser/completion/completiondelegate.py index f6fec39f6..e497e1204 100644 --- a/qutebrowser/completion/completiondelegate.py +++ b/qutebrowser/completion/completiondelegate.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/completionwidget.py b/qutebrowser/completion/completionwidget.py index c137f1141..01527e763 100644 --- a/qutebrowser/completion/completionwidget.py +++ b/qutebrowser/completion/completionwidget.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/__init__.py b/qutebrowser/completion/models/__init__.py index f11f631d5..6bfa5dcc9 100644 --- a/qutebrowser/completion/models/__init__.py +++ b/qutebrowser/completion/models/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/completionmodel.py b/qutebrowser/completion/models/completionmodel.py index ea491612a..411140917 100644 --- a/qutebrowser/completion/models/completionmodel.py +++ b/qutebrowser/completion/models/completionmodel.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/configmodel.py b/qutebrowser/completion/models/configmodel.py index 6c85fbb29..f863a1b76 100644 --- a/qutebrowser/completion/models/configmodel.py +++ b/qutebrowser/completion/models/configmodel.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/filepathcategory.py b/qutebrowser/completion/models/filepathcategory.py index 66bf41ebd..8f1006cdf 100644 --- a/qutebrowser/completion/models/filepathcategory.py +++ b/qutebrowser/completion/models/filepathcategory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/histcategory.py b/qutebrowser/completion/models/histcategory.py index fa5c5f2aa..cb231e76d 100644 --- a/qutebrowser/completion/models/histcategory.py +++ b/qutebrowser/completion/models/histcategory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/listcategory.py b/qutebrowser/completion/models/listcategory.py index e6756c1a3..1ca81cf5e 100644 --- a/qutebrowser/completion/models/listcategory.py +++ b/qutebrowser/completion/models/listcategory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/miscmodels.py b/qutebrowser/completion/models/miscmodels.py index 77072c720..1f38990b7 100644 --- a/qutebrowser/completion/models/miscmodels.py +++ b/qutebrowser/completion/models/miscmodels.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/urlmodel.py b/qutebrowser/completion/models/urlmodel.py index f64e0b570..ef1326b57 100644 --- a/qutebrowser/completion/models/urlmodel.py +++ b/qutebrowser/completion/models/urlmodel.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/completion/models/util.py b/qutebrowser/completion/models/util.py index 21dcf2e9f..69a192f68 100644 --- a/qutebrowser/completion/models/util.py +++ b/qutebrowser/completion/models/util.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/__init__.py b/qutebrowser/components/__init__.py index a7613dd81..c2b803597 100644 --- a/qutebrowser/components/__init__.py +++ b/qutebrowser/components/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/adblockcommands.py b/qutebrowser/components/adblockcommands.py index 3b2cbe24d..f29e382eb 100644 --- a/qutebrowser/components/adblockcommands.py +++ b/qutebrowser/components/adblockcommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/braveadblock.py b/qutebrowser/components/braveadblock.py index 82a59b482..f3c7fda4c 100644 --- a/qutebrowser/components/braveadblock.py +++ b/qutebrowser/components/braveadblock.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/caretcommands.py b/qutebrowser/components/caretcommands.py index 8ab175012..9f6532d47 100644 --- a/qutebrowser/components/caretcommands.py +++ b/qutebrowser/components/caretcommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/hostblock.py b/qutebrowser/components/hostblock.py index f364269d6..44f80db50 100644 --- a/qutebrowser/components/hostblock.py +++ b/qutebrowser/components/hostblock.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/misccommands.py b/qutebrowser/components/misccommands.py index 8352f5f07..229e7ee80 100644 --- a/qutebrowser/components/misccommands.py +++ b/qutebrowser/components/misccommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/readlinecommands.py b/qutebrowser/components/readlinecommands.py index f6ee31e84..05ccc6662 100644 --- a/qutebrowser/components/readlinecommands.py +++ b/qutebrowser/components/readlinecommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/scrollcommands.py b/qutebrowser/components/scrollcommands.py index 2287041d7..4efbc3399 100644 --- a/qutebrowser/components/scrollcommands.py +++ b/qutebrowser/components/scrollcommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/utils/blockutils.py b/qutebrowser/components/utils/blockutils.py index 828a87952..fd26593c9 100644 --- a/qutebrowser/components/utils/blockutils.py +++ b/qutebrowser/components/utils/blockutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/components/zoomcommands.py b/qutebrowser/components/zoomcommands.py index 72715b730..177cd5675 100644 --- a/qutebrowser/components/zoomcommands.py +++ b/qutebrowser/components/zoomcommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/__init__.py b/qutebrowser/config/__init__.py index 516879e79..5f3354ac7 100644 --- a/qutebrowser/config/__init__.py +++ b/qutebrowser/config/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/config.py b/qutebrowser/config/config.py index cdb360ef1..fb3fc7647 100644 --- a/qutebrowser/config/config.py +++ b/qutebrowser/config/config.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configcache.py b/qutebrowser/config/configcache.py index 54915fb2b..94f4dfff9 100644 --- a/qutebrowser/config/configcache.py +++ b/qutebrowser/config/configcache.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Jay Kamat # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configcommands.py b/qutebrowser/config/configcommands.py index 4b6c8bb6f..a196f5d68 100644 --- a/qutebrowser/config/configcommands.py +++ b/qutebrowser/config/configcommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 6306437ec..827630fb3 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configexc.py b/qutebrowser/config/configexc.py index 58e5ad67a..75ab46d0f 100644 --- a/qutebrowser/config/configexc.py +++ b/qutebrowser/config/configexc.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configfiles.py b/qutebrowser/config/configfiles.py index d88e3e91d..2a13133ae 100644 --- a/qutebrowser/config/configfiles.py +++ b/qutebrowser/config/configfiles.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configinit.py b/qutebrowser/config/configinit.py index 03453dded..46cd5f429 100644 --- a/qutebrowser/config/configinit.py +++ b/qutebrowser/config/configinit.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configtypes.py b/qutebrowser/config/configtypes.py index 2b2b572ab..b451744c3 100644 --- a/qutebrowser/config/configtypes.py +++ b/qutebrowser/config/configtypes.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/configutils.py b/qutebrowser/config/configutils.py index c03971077..3598676a3 100644 --- a/qutebrowser/config/configutils.py +++ b/qutebrowser/config/configutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/qtargs.py b/qutebrowser/config/qtargs.py index 8b7a85b64..91cb9a17e 100644 --- a/qutebrowser/config/qtargs.py +++ b/qutebrowser/config/qtargs.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/stylesheet.py b/qutebrowser/config/stylesheet.py index c840a99c2..3dede5252 100644 --- a/qutebrowser/config/stylesheet.py +++ b/qutebrowser/config/stylesheet.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/config/websettings.py b/qutebrowser/config/websettings.py index e5dd2e037..18da02ea4 100644 --- a/qutebrowser/config/websettings.py +++ b/qutebrowser/config/websettings.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/extensions/interceptors.py b/qutebrowser/extensions/interceptors.py index 2a9cfb647..5d2e7f79f 100644 --- a/qutebrowser/extensions/interceptors.py +++ b/qutebrowser/extensions/interceptors.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/extensions/loader.py b/qutebrowser/extensions/loader.py index 073acd44c..19691fc2b 100644 --- a/qutebrowser/extensions/loader.py +++ b/qutebrowser/extensions/loader.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/keyinput/__init__.py b/qutebrowser/keyinput/__init__.py index 4acc6d7c3..ed51a3806 100644 --- a/qutebrowser/keyinput/__init__.py +++ b/qutebrowser/keyinput/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/keyinput/basekeyparser.py b/qutebrowser/keyinput/basekeyparser.py index cdb3948b4..42aad0280 100644 --- a/qutebrowser/keyinput/basekeyparser.py +++ b/qutebrowser/keyinput/basekeyparser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/keyinput/eventfilter.py b/qutebrowser/keyinput/eventfilter.py index 6688e62eb..a66797ead 100644 --- a/qutebrowser/keyinput/eventfilter.py +++ b/qutebrowser/keyinput/eventfilter.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/keyinput/keyutils.py b/qutebrowser/keyinput/keyutils.py index aecca59a8..3782faa11 100644 --- a/qutebrowser/keyinput/keyutils.py +++ b/qutebrowser/keyinput/keyutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/keyinput/macros.py b/qutebrowser/keyinput/macros.py index fdef7c669..9c5282d3d 100644 --- a/qutebrowser/keyinput/macros.py +++ b/qutebrowser/keyinput/macros.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # Copyright 2016-2018 Jan Verbeek (blyxxyz) # diff --git a/qutebrowser/keyinput/modeman.py b/qutebrowser/keyinput/modeman.py index 671c2519e..8fdb6bebc 100644 --- a/qutebrowser/keyinput/modeman.py +++ b/qutebrowser/keyinput/modeman.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/keyinput/modeparsers.py b/qutebrowser/keyinput/modeparsers.py index d127a795a..7a2576f5d 100644 --- a/qutebrowser/keyinput/modeparsers.py +++ b/qutebrowser/keyinput/modeparsers.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/__init__.py b/qutebrowser/mainwindow/__init__.py index 086ff97cf..65381731f 100644 --- a/qutebrowser/mainwindow/__init__.py +++ b/qutebrowser/mainwindow/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/mainwindow.py b/qutebrowser/mainwindow/mainwindow.py index dccf9cea7..80875528e 100644 --- a/qutebrowser/mainwindow/mainwindow.py +++ b/qutebrowser/mainwindow/mainwindow.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/messageview.py b/qutebrowser/mainwindow/messageview.py index d76a8b0e2..e3b01646e 100644 --- a/qutebrowser/mainwindow/messageview.py +++ b/qutebrowser/mainwindow/messageview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/prompt.py b/qutebrowser/mainwindow/prompt.py index c1ad82990..53eda2e27 100644 --- a/qutebrowser/mainwindow/prompt.py +++ b/qutebrowser/mainwindow/prompt.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/__init__.py b/qutebrowser/mainwindow/statusbar/__init__.py index 5ded944da..92dbe3590 100644 --- a/qutebrowser/mainwindow/statusbar/__init__.py +++ b/qutebrowser/mainwindow/statusbar/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/backforward.py b/qutebrowser/mainwindow/statusbar/backforward.py index 76614a14f..6fcf61500 100644 --- a/qutebrowser/mainwindow/statusbar/backforward.py +++ b/qutebrowser/mainwindow/statusbar/backforward.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/bar.py b/qutebrowser/mainwindow/statusbar/bar.py index eb65a0928..76e5ebaeb 100644 --- a/qutebrowser/mainwindow/statusbar/bar.py +++ b/qutebrowser/mainwindow/statusbar/bar.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/clock.py b/qutebrowser/mainwindow/statusbar/clock.py index ebab152b7..088e28a4a 100644 --- a/qutebrowser/mainwindow/statusbar/clock.py +++ b/qutebrowser/mainwindow/statusbar/clock.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/command.py b/qutebrowser/mainwindow/statusbar/command.py index 84e026059..c546e29aa 100644 --- a/qutebrowser/mainwindow/statusbar/command.py +++ b/qutebrowser/mainwindow/statusbar/command.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/keystring.py b/qutebrowser/mainwindow/statusbar/keystring.py index ed8b56318..133364acc 100644 --- a/qutebrowser/mainwindow/statusbar/keystring.py +++ b/qutebrowser/mainwindow/statusbar/keystring.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/percentage.py b/qutebrowser/mainwindow/statusbar/percentage.py index 6ecdc4659..a8428dcbe 100644 --- a/qutebrowser/mainwindow/statusbar/percentage.py +++ b/qutebrowser/mainwindow/statusbar/percentage.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/progress.py b/qutebrowser/mainwindow/statusbar/progress.py index f76367b38..d04e30d09 100644 --- a/qutebrowser/mainwindow/statusbar/progress.py +++ b/qutebrowser/mainwindow/statusbar/progress.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/searchmatch.py b/qutebrowser/mainwindow/statusbar/searchmatch.py index 7c9a5b05e..88684a6c3 100644 --- a/qutebrowser/mainwindow/statusbar/searchmatch.py +++ b/qutebrowser/mainwindow/statusbar/searchmatch.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/tabindex.py b/qutebrowser/mainwindow/statusbar/tabindex.py index e41501123..3f4c6ce43 100644 --- a/qutebrowser/mainwindow/statusbar/tabindex.py +++ b/qutebrowser/mainwindow/statusbar/tabindex.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/textbase.py b/qutebrowser/mainwindow/statusbar/textbase.py index 9ab4b9753..3cd138bdf 100644 --- a/qutebrowser/mainwindow/statusbar/textbase.py +++ b/qutebrowser/mainwindow/statusbar/textbase.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/statusbar/url.py b/qutebrowser/mainwindow/statusbar/url.py index 27a2b2133..54faf232d 100644 --- a/qutebrowser/mainwindow/statusbar/url.py +++ b/qutebrowser/mainwindow/statusbar/url.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/tabbedbrowser.py b/qutebrowser/mainwindow/tabbedbrowser.py index 770e6a039..566bd8afa 100644 --- a/qutebrowser/mainwindow/tabbedbrowser.py +++ b/qutebrowser/mainwindow/tabbedbrowser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/tabwidget.py b/qutebrowser/mainwindow/tabwidget.py index 580da64b4..fe9ce1e06 100644 --- a/qutebrowser/mainwindow/tabwidget.py +++ b/qutebrowser/mainwindow/tabwidget.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/mainwindow/windowundo.py b/qutebrowser/mainwindow/windowundo.py index 80f47aaaa..c9a9b4360 100644 --- a/qutebrowser/mainwindow/windowundo.py +++ b/qutebrowser/mainwindow/windowundo.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/__init__.py b/qutebrowser/misc/__init__.py index 8f68e3d6f..abee22f68 100644 --- a/qutebrowser/misc/__init__.py +++ b/qutebrowser/misc/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/autoupdate.py b/qutebrowser/misc/autoupdate.py index ca21181c0..3269a35ee 100644 --- a/qutebrowser/misc/autoupdate.py +++ b/qutebrowser/misc/autoupdate.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/backendproblem.py b/qutebrowser/misc/backendproblem.py index 84eb120be..800e1132c 100644 --- a/qutebrowser/misc/backendproblem.py +++ b/qutebrowser/misc/backendproblem.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/checkpyver.py b/qutebrowser/misc/checkpyver.py index ad22affa1..2a0d184cd 100644 --- a/qutebrowser/misc/checkpyver.py +++ b/qutebrowser/misc/checkpyver.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The-Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/cmdhistory.py b/qutebrowser/misc/cmdhistory.py index cd880a0fc..d2f5fca44 100644 --- a/qutebrowser/misc/cmdhistory.py +++ b/qutebrowser/misc/cmdhistory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/consolewidget.py b/qutebrowser/misc/consolewidget.py index b2c2b4571..6d8d9916f 100644 --- a/qutebrowser/misc/consolewidget.py +++ b/qutebrowser/misc/consolewidget.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/crashdialog.py b/qutebrowser/misc/crashdialog.py index b3998cf27..04c92a529 100644 --- a/qutebrowser/misc/crashdialog.py +++ b/qutebrowser/misc/crashdialog.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/crashsignal.py b/qutebrowser/misc/crashsignal.py index a0144e26d..2d6aa834c 100644 --- a/qutebrowser/misc/crashsignal.py +++ b/qutebrowser/misc/crashsignal.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/debugcachestats.py b/qutebrowser/misc/debugcachestats.py index 9090bd0ea..c221a9dd1 100644 --- a/qutebrowser/misc/debugcachestats.py +++ b/qutebrowser/misc/debugcachestats.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py index 8dcf0dce0..04e5c44a5 100644 --- a/qutebrowser/misc/earlyinit.py +++ b/qutebrowser/misc/earlyinit.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The-Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/editor.py b/qutebrowser/misc/editor.py index 1c4c6ca03..14110b5c3 100644 --- a/qutebrowser/misc/editor.py +++ b/qutebrowser/misc/editor.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/elf.py b/qutebrowser/misc/elf.py index 49a88b398..ea722ebd8 100644 --- a/qutebrowser/misc/elf.py +++ b/qutebrowser/misc/elf.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The-Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/guiprocess.py b/qutebrowser/misc/guiprocess.py index 9aebf8013..a50849d29 100644 --- a/qutebrowser/misc/guiprocess.py +++ b/qutebrowser/misc/guiprocess.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/httpclient.py b/qutebrowser/misc/httpclient.py index da205ae50..2bb152b03 100644 --- a/qutebrowser/misc/httpclient.py +++ b/qutebrowser/misc/httpclient.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/ipc.py b/qutebrowser/misc/ipc.py index c94c67b29..e4a8e5d70 100644 --- a/qutebrowser/misc/ipc.py +++ b/qutebrowser/misc/ipc.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/keyhintwidget.py b/qutebrowser/misc/keyhintwidget.py index cdfed8392..a28b881cb 100644 --- a/qutebrowser/misc/keyhintwidget.py +++ b/qutebrowser/misc/keyhintwidget.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/lineparser.py b/qutebrowser/misc/lineparser.py index a270798b5..a0bcc94fa 100644 --- a/qutebrowser/misc/lineparser.py +++ b/qutebrowser/misc/lineparser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/miscwidgets.py b/qutebrowser/misc/miscwidgets.py index a50be44ec..652735f2f 100644 --- a/qutebrowser/misc/miscwidgets.py +++ b/qutebrowser/misc/miscwidgets.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/msgbox.py b/qutebrowser/misc/msgbox.py index 45ad2d44a..bd9466d27 100644 --- a/qutebrowser/misc/msgbox.py +++ b/qutebrowser/misc/msgbox.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/nativeeventfilter.py b/qutebrowser/misc/nativeeventfilter.py index 6213a7223..e96c61682 100644 --- a/qutebrowser/misc/nativeeventfilter.py +++ b/qutebrowser/misc/nativeeventfilter.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2023 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/objects.py b/qutebrowser/misc/objects.py index 63a9cb2dd..090665cd3 100644 --- a/qutebrowser/misc/objects.py +++ b/qutebrowser/misc/objects.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/pastebin.py b/qutebrowser/misc/pastebin.py index afca59d2e..618f27fe1 100644 --- a/qutebrowser/misc/pastebin.py +++ b/qutebrowser/misc/pastebin.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/quitter.py b/qutebrowser/misc/quitter.py index a849aec70..d502efa65 100644 --- a/qutebrowser/misc/quitter.py +++ b/qutebrowser/misc/quitter.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/savemanager.py b/qutebrowser/misc/savemanager.py index ed1b90890..ce9e80f52 100644 --- a/qutebrowser/misc/savemanager.py +++ b/qutebrowser/misc/savemanager.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/sessions.py b/qutebrowser/misc/sessions.py index b96764d81..360856876 100644 --- a/qutebrowser/misc/sessions.py +++ b/qutebrowser/misc/sessions.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/split.py b/qutebrowser/misc/split.py index c7d93e76d..0aac9005c 100644 --- a/qutebrowser/misc/split.py +++ b/qutebrowser/misc/split.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/sql.py b/qutebrowser/misc/sql.py index 28a97fd77..4892b342b 100644 --- a/qutebrowser/misc/sql.py +++ b/qutebrowser/misc/sql.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/throttle.py b/qutebrowser/misc/throttle.py index 5e4dd13b2..590af0882 100644 --- a/qutebrowser/misc/throttle.py +++ b/qutebrowser/misc/throttle.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Jay Kamat # # This file is part of qutebrowser. diff --git a/qutebrowser/misc/utilcmds.py b/qutebrowser/misc/utilcmds.py index d94b32c26..0a38cc6bf 100644 --- a/qutebrowser/misc/utilcmds.py +++ b/qutebrowser/misc/utilcmds.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/qt/core.py b/qutebrowser/qt/core.py index d9323f877..6ae147ce7 100644 --- a/qutebrowser/qt/core.py +++ b/qutebrowser/qt/core.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt Core. diff --git a/qutebrowser/qt/dbus.py b/qutebrowser/qt/dbus.py index 350c98dc5..d3b22a747 100644 --- a/qutebrowser/qt/dbus.py +++ b/qutebrowser/qt/dbus.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt DBus. diff --git a/qutebrowser/qt/gui.py b/qutebrowser/qt/gui.py index 6c08bc3c4..dc5fbb23c 100644 --- a/qutebrowser/qt/gui.py +++ b/qutebrowser/qt/gui.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import,unused-import """Wrapped Qt imports for Qt Gui. diff --git a/qutebrowser/qt/machinery.py b/qutebrowser/qt/machinery.py index 15ff72b17..4e88a0634 100644 --- a/qutebrowser/qt/machinery.py +++ b/qutebrowser/qt/machinery.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pyright: reportConstantRedefinition=false """Qt wrapper selection. diff --git a/qutebrowser/qt/network.py b/qutebrowser/qt/network.py index 9fbd91ec3..7b194affc 100644 --- a/qutebrowser/qt/network.py +++ b/qutebrowser/qt/network.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt Network. diff --git a/qutebrowser/qt/opengl.py b/qutebrowser/qt/opengl.py index 6f94fa3d9..0a14dffad 100644 --- a/qutebrowser/qt/opengl.py +++ b/qutebrowser/qt/opengl.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-import """Wrapped Qt imports for Qt OpenGL. diff --git a/qutebrowser/qt/printsupport.py b/qutebrowser/qt/printsupport.py index c1736b7e3..08358d417 100644 --- a/qutebrowser/qt/printsupport.py +++ b/qutebrowser/qt/printsupport.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt Print Support. diff --git a/qutebrowser/qt/qml.py b/qutebrowser/qt/qml.py index da45afb36..9202667e2 100644 --- a/qutebrowser/qt/qml.py +++ b/qutebrowser/qt/qml.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt QML. diff --git a/qutebrowser/qt/sip.py b/qutebrowser/qt/sip.py index 7e4bf246d..113fde629 100644 --- a/qutebrowser/qt/sip.py +++ b/qutebrowser/qt/sip.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=wildcard-import,unused-wildcard-import """Wrapped Qt imports for PyQt5.sip/PyQt6.sip. diff --git a/qutebrowser/qt/sql.py b/qutebrowser/qt/sql.py index c2ed624ac..4d969936b 100644 --- a/qutebrowser/qt/sql.py +++ b/qutebrowser/qt/sql.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt SQL. diff --git a/qutebrowser/qt/test.py b/qutebrowser/qt/test.py index d1d266902..3c1bcfdff 100644 --- a/qutebrowser/qt/test.py +++ b/qutebrowser/qt/test.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt Test. diff --git a/qutebrowser/qt/webenginecore.py b/qutebrowser/qt/webenginecore.py index f45d13f54..afd76e38c 100644 --- a/qutebrowser/qt/webenginecore.py +++ b/qutebrowser/qt/webenginecore.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import,unused-import """Wrapped Qt imports for Qt WebEngine Core. diff --git a/qutebrowser/qt/webenginewidgets.py b/qutebrowser/qt/webenginewidgets.py index 9d11d5f79..b8833e9c8 100644 --- a/qutebrowser/qt/webenginewidgets.py +++ b/qutebrowser/qt/webenginewidgets.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt WebEngine Widgets. diff --git a/qutebrowser/qt/webkit.py b/qutebrowser/qt/webkit.py index 17516d96c..58f706d5d 100644 --- a/qutebrowser/qt/webkit.py +++ b/qutebrowser/qt/webkit.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=wildcard-import """Wrapped Qt imports for Qt WebKit. diff --git a/qutebrowser/qt/webkitwidgets.py b/qutebrowser/qt/webkitwidgets.py index d6e7254f6..4a3c61b4f 100644 --- a/qutebrowser/qt/webkitwidgets.py +++ b/qutebrowser/qt/webkitwidgets.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=wildcard-import,no-else-raise """Wrapped Qt imports for Qt WebKit Widgets. diff --git a/qutebrowser/qt/widgets.py b/qutebrowser/qt/widgets.py index 0f43779a6..eac8cafbb 100644 --- a/qutebrowser/qt/widgets.py +++ b/qutebrowser/qt/widgets.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # pylint: disable=import-error,wildcard-import,unused-wildcard-import """Wrapped Qt imports for Qt Widgets. diff --git a/qutebrowser/qutebrowser.py b/qutebrowser/qutebrowser.py index 2a9b340e1..74e3e8ba7 100644 --- a/qutebrowser/qutebrowser.py +++ b/qutebrowser/qutebrowser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/qutebrowser/utils/__init__.py b/qutebrowser/utils/__init__.py index 3f6a4f239..cfbeb8aeb 100644 --- a/qutebrowser/utils/__init__.py +++ b/qutebrowser/utils/__init__.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/debug.py b/qutebrowser/utils/debug.py index 47cbebb35..ec1350ff4 100644 --- a/qutebrowser/utils/debug.py +++ b/qutebrowser/utils/debug.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/docutils.py b/qutebrowser/utils/docutils.py index 89e799c89..012a0492b 100644 --- a/qutebrowser/utils/docutils.py +++ b/qutebrowser/utils/docutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/error.py b/qutebrowser/utils/error.py index 3a155a4fe..163950ad6 100644 --- a/qutebrowser/utils/error.py +++ b/qutebrowser/utils/error.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/javascript.py b/qutebrowser/utils/javascript.py index 2850db3d1..bda612aee 100644 --- a/qutebrowser/utils/javascript.py +++ b/qutebrowser/utils/javascript.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/jinja.py b/qutebrowser/utils/jinja.py index da8878aee..cde8b3442 100644 --- a/qutebrowser/utils/jinja.py +++ b/qutebrowser/utils/jinja.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/log.py b/qutebrowser/utils/log.py index 040e75f16..6bf7f143b 100644 --- a/qutebrowser/utils/log.py +++ b/qutebrowser/utils/log.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/message.py b/qutebrowser/utils/message.py index 10183afee..c380f0e24 100644 --- a/qutebrowser/utils/message.py +++ b/qutebrowser/utils/message.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/objreg.py b/qutebrowser/utils/objreg.py index 58ac18b16..183b18a6e 100644 --- a/qutebrowser/utils/objreg.py +++ b/qutebrowser/utils/objreg.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/qtutils.py b/qutebrowser/utils/qtutils.py index 0ecc4cba6..d8abfad93 100644 --- a/qutebrowser/utils/qtutils.py +++ b/qutebrowser/utils/qtutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/resources.py b/qutebrowser/utils/resources.py index e21482dba..44e468736 100644 --- a/qutebrowser/utils/resources.py +++ b/qutebrowser/utils/resources.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/standarddir.py b/qutebrowser/utils/standarddir.py index b54e28d17..884a26376 100644 --- a/qutebrowser/utils/standarddir.py +++ b/qutebrowser/utils/standarddir.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/urlmatch.py b/qutebrowser/utils/urlmatch.py index 81127d986..f57e7d793 100644 --- a/qutebrowser/utils/urlmatch.py +++ b/qutebrowser/utils/urlmatch.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/urlutils.py b/qutebrowser/utils/urlutils.py index 58862925e..a67f700d7 100644 --- a/qutebrowser/utils/urlutils.py +++ b/qutebrowser/utils/urlutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/usertypes.py b/qutebrowser/utils/usertypes.py index aadda000b..b9ebf0546 100644 --- a/qutebrowser/utils/usertypes.py +++ b/qutebrowser/utils/usertypes.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py index b049f9cf1..c78397372 100644 --- a/qutebrowser/utils/utils.py +++ b/qutebrowser/utils/utils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/qutebrowser/utils/version.py b/qutebrowser/utils/version.py index 83171ba6a..857bf4d4a 100644 --- a/qutebrowser/utils/version.py +++ b/qutebrowser/utils/version.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/__init__.py b/scripts/__init__.py index 90be1e04d..7985e7bbc 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -1,3 +1 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - """Various utility scripts.""" diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py index a7816e132..09405c3e7 100755 --- a/scripts/asciidoc2html.py +++ b/scripts/asciidoc2html.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/__init__.py b/scripts/dev/__init__.py index 7dc043361..38246491d 100644 --- a/scripts/dev/__init__.py +++ b/scripts/dev/__init__.py @@ -1,3 +1 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - """Various scripts used for developing qutebrowser.""" diff --git a/scripts/dev/build_pyqt_wheel.py b/scripts/dev/build_pyqt_wheel.py index b63331341..697cc1ac1 100644 --- a/scripts/dev/build_pyqt_wheel.py +++ b/scripts/dev/build_pyqt_wheel.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index 04d07f59b..996487693 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/change_release.py b/scripts/dev/change_release.py index b033b04ea..882f4543d 100644 --- a/scripts/dev/change_release.py +++ b/scripts/dev/change_release.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/check_coverage.py b/scripts/dev/check_coverage.py index 0f8b23554..912e4cbc4 100644 --- a/scripts/dev/check_coverage.py +++ b/scripts/dev/check_coverage.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/check_doc_changes.py b/scripts/dev/check_doc_changes.py index 5e3a457b6..53ef12090 100755 --- a/scripts/dev/check_doc_changes.py +++ b/scripts/dev/check_doc_changes.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/ci/docker/generate.py b/scripts/dev/ci/docker/generate.py index dc2a8cffe..ee4fd28d5 100644 --- a/scripts/dev/ci/docker/generate.py +++ b/scripts/dev/ci/docker/generate.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/ci/problemmatchers.py b/scripts/dev/ci/problemmatchers.py index c59eabeb0..af6521c0a 100644 --- a/scripts/dev/ci/problemmatchers.py +++ b/scripts/dev/ci/problemmatchers.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=sh fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/cleanup.py b/scripts/dev/cleanup.py index 4f4842f3b..4a05e56b4 100755 --- a/scripts/dev/cleanup.py +++ b/scripts/dev/cleanup.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/gen_versioninfo.py b/scripts/dev/gen_versioninfo.py index 56610721d..ecce10adf 100644 --- a/scripts/dev/gen_versioninfo.py +++ b/scripts/dev/gen_versioninfo.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/get_coredumpctl_traces.py b/scripts/dev/get_coredumpctl_traces.py index 88a0a5b0c..8db91bacd 100644 --- a/scripts/dev/get_coredumpctl_traces.py +++ b/scripts/dev/get_coredumpctl_traces.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/misc_checks.py b/scripts/dev/misc_checks.py index 998929827..82c3d48c1 100644 --- a/scripts/dev/misc_checks.py +++ b/scripts/dev/misc_checks.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/pylint_checkers/qute_pylint/config.py b/scripts/dev/pylint_checkers/qute_pylint/config.py index 420ecb4ec..1f08d66be 100644 --- a/scripts/dev/pylint_checkers/qute_pylint/config.py +++ b/scripts/dev/pylint_checkers/qute_pylint/config.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/pylint_checkers/setup.py b/scripts/dev/pylint_checkers/setup.py index e67fbe074..e9bd960bc 100644 --- a/scripts/dev/pylint_checkers/setup.py +++ b/scripts/dev/pylint_checkers/setup.py @@ -1,7 +1,5 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/recompile_requirements.py b/scripts/dev/recompile_requirements.py index 8459031e2..8ca895f99 100644 --- a/scripts/dev/recompile_requirements.py +++ b/scripts/dev/recompile_requirements.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/rewrite_enums.py b/scripts/dev/rewrite_enums.py index cb3dedbd1..2d36f0912 100644 --- a/scripts/dev/rewrite_enums.py +++ b/scripts/dev/rewrite_enums.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021-2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/rewrite_find_enums.py b/scripts/dev/rewrite_find_enums.py index 2ea7e81c6..327705664 100644 --- a/scripts/dev/rewrite_find_enums.py +++ b/scripts/dev/rewrite_find_enums.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021-2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/rewrite_find_flags.py b/scripts/dev/rewrite_find_flags.py index 79436f4c8..9e269ac9b 100644 --- a/scripts/dev/rewrite_find_flags.py +++ b/scripts/dev/rewrite_find_flags.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021-2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/run_profile.py b/scripts/dev/run_profile.py index 2799a031b..ca4e9ce86 100755 --- a/scripts/dev/run_profile.py +++ b/scripts/dev/run_profile.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/run_pylint_on_tests.py b/scripts/dev/run_pylint_on_tests.py index e044de976..a6083bb97 100644 --- a/scripts/dev/run_pylint_on_tests.py +++ b/scripts/dev/run_pylint_on_tests.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/run_shellcheck.sh b/scripts/dev/run_shellcheck.sh index 1556f9654..0cd0c25ed 100644 --- a/scripts/dev/run_shellcheck.sh +++ b/scripts/dev/run_shellcheck.sh @@ -1,6 +1,4 @@ #!/bin/bash -# vim: ft=sh fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/run_vulture.py b/scripts/dev/run_vulture.py index 0bbfb3bfa..a92a0f27e 100755 --- a/scripts/dev/run_vulture.py +++ b/scripts/dev/run_vulture.py @@ -1,6 +1,4 @@ #!/usr/bin/env python -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/src2asciidoc.py b/scripts/dev/src2asciidoc.py index 2ad4dd60b..f1fd50279 100755 --- a/scripts/dev/src2asciidoc.py +++ b/scripts/dev/src2asciidoc.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/dev/standardpaths_tester.py b/scripts/dev/standardpaths_tester.py index 03de7f887..ff85b2a4c 100644 --- a/scripts/dev/standardpaths_tester.py +++ b/scripts/dev/standardpaths_tester.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/ua_fetch.py b/scripts/dev/ua_fetch.py index 743cd252e..2bcdda2f3 100644 --- a/scripts/dev/ua_fetch.py +++ b/scripts/dev/ua_fetch.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/dev/update_3rdparty.py b/scripts/dev/update_3rdparty.py index 71d7ae7b5..fd15f2ecd 100755 --- a/scripts/dev/update_3rdparty.py +++ b/scripts/dev/update_3rdparty.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # Copyright 2015 Daniel Schadt # diff --git a/scripts/dev/update_version.py b/scripts/dev/update_version.py index 67e22ea26..6cf6a1013 100644 --- a/scripts/dev/update_version.py +++ b/scripts/dev/update_version.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Andy Mender # Copyright 2019-2021 Florian Bruhin (The Compiler) diff --git a/scripts/dictcli.py b/scripts/dictcli.py index 0b14bb831..6a6b49f24 100755 --- a/scripts/dictcli.py +++ b/scripts/dictcli.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # Copyright 2017-2018 Michal Siedlaczek diff --git a/scripts/hist_importer.py b/scripts/hist_importer.py index df12bcf2e..7dc5906e3 100755 --- a/scripts/hist_importer.py +++ b/scripts/hist_importer.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # Copyright 2017-2018 Josefson Souza diff --git a/scripts/hostblock_blame.py b/scripts/hostblock_blame.py index b18c62925..271ff2ff0 100644 --- a/scripts/hostblock_blame.py +++ b/scripts/hostblock_blame.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/importer.py b/scripts/importer.py index d23c1e0da..d3817b13f 100755 --- a/scripts/importer.py +++ b/scripts/importer.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # Copyright 2014-2018 Claude (longneck) diff --git a/scripts/keytester.py b/scripts/keytester.py index bc9a22263..6d994114d 100644 --- a/scripts/keytester.py +++ b/scripts/keytester.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/link_pyqt.py b/scripts/link_pyqt.py index 028c18ee2..4581bef41 100644 --- a/scripts/link_pyqt.py +++ b/scripts/link_pyqt.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py index f65d36170..625cedd1a 100755 --- a/scripts/mkvenv.py +++ b/scripts/mkvenv.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/opengl_info.py b/scripts/opengl_info.py index 1bfdf22aa..5dc8f81c6 100644 --- a/scripts/opengl_info.py +++ b/scripts/opengl_info.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/setupcommon.py b/scripts/setupcommon.py index bd549d7cc..15751cbe7 100644 --- a/scripts/setupcommon.py +++ b/scripts/setupcommon.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/scripts/testbrowser/testbrowser_webengine.py b/scripts/testbrowser/testbrowser_webengine.py index 4351d1f7f..9a4f0a30f 100755 --- a/scripts/testbrowser/testbrowser_webengine.py +++ b/scripts/testbrowser/testbrowser_webengine.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/testbrowser/testbrowser_webkit.py b/scripts/testbrowser/testbrowser_webkit.py index 40938d06b..d66f58252 100755 --- a/scripts/testbrowser/testbrowser_webkit.py +++ b/scripts/testbrowser/testbrowser_webkit.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/scripts/utils.py b/scripts/utils.py index 6663069c9..87b659545 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/setup.py b/setup.py index 187d0902b..e73ba1d0d 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,5 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/conftest.py b/tests/conftest.py index 0da3a1f81..fc5f13aa4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/conftest.py b/tests/end2end/conftest.py index febe1b70b..5246f4011 100644 --- a/tests/end2end/conftest.py +++ b/tests/end2end/conftest.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/data/brave-adblock/generate.py b/tests/end2end/data/brave-adblock/generate.py index 393cda4e7..6e37cde58 100644 --- a/tests/end2end/data/brave-adblock/generate.py +++ b/tests/end2end/data/brave-adblock/generate.py @@ -1,6 +1,4 @@ #!/usr/bin/env python -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Árni Dagur # # This file is part of qutebrowser. diff --git a/tests/end2end/data/misc/pyeval_file.py b/tests/end2end/data/misc/pyeval_file.py index 168ba24a9..53eddf0ba 100644 --- a/tests/end2end/data/misc/pyeval_file.py +++ b/tests/end2end/data/misc/pyeval_file.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/data/userscripts/stdinclose.py b/tests/end2end/data/userscripts/stdinclose.py index e0062ab35..81b1b259d 100755 --- a/tests/end2end/data/userscripts/stdinclose.py +++ b/tests/end2end/data/userscripts/stdinclose.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/backforward.feature b/tests/end2end/features/backforward.feature index 673910412..d60fde645 100644 --- a/tests/end2end/features/backforward.feature +++ b/tests/end2end/features/backforward.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Going back and forward. Testing the :back/:forward commands. diff --git a/tests/end2end/features/caret.feature b/tests/end2end/features/caret.feature index cc6b261ef..1302a1e6d 100644 --- a/tests/end2end/features/caret.feature +++ b/tests/end2end/features/caret.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Caret mode In caret mode, the user can select and yank text using the keyboard. diff --git a/tests/end2end/features/completion.feature b/tests/end2end/features/completion.feature index ba6ea3837..b7cd09c6c 100644 --- a/tests/end2end/features/completion.feature +++ b/tests/end2end/features/completion.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Using completion Scenario: No warnings when completing with one entry (#1600) diff --git a/tests/end2end/features/conftest.py b/tests/end2end/features/conftest.py index 43d953b26..8ce8ba699 100644 --- a/tests/end2end/features/conftest.py +++ b/tests/end2end/features/conftest.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/downloads.feature b/tests/end2end/features/downloads.feature index a71b50c34..c2f359f14 100644 --- a/tests/end2end/features/downloads.feature +++ b/tests/end2end/features/downloads.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Downloading things from a website. Background: diff --git a/tests/end2end/features/editor.feature b/tests/end2end/features/editor.feature index 90e7189b7..1ec6f9d0d 100644 --- a/tests/end2end/features/editor.feature +++ b/tests/end2end/features/editor.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Opening external editors ## :edit-url diff --git a/tests/end2end/features/hints.feature b/tests/end2end/features/hints.feature index 1cfd8ccad..adac6b8e6 100644 --- a/tests/end2end/features/hints.feature +++ b/tests/end2end/features/hints.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Using hints # https://bugreports.qt.io/browse/QTBUG-58381 diff --git a/tests/end2end/features/history.feature b/tests/end2end/features/history.feature index 034b1c90a..caec8017b 100644 --- a/tests/end2end/features/history.feature +++ b/tests/end2end/features/history.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Page history Make sure the global page history is saved correctly. diff --git a/tests/end2end/features/invoke.feature b/tests/end2end/features/invoke.feature index ee45dcb29..d9c472ec4 100644 --- a/tests/end2end/features/invoke.feature +++ b/tests/end2end/features/invoke.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Invoking a new process Simulate what happens when running qutebrowser with an existing instance diff --git a/tests/end2end/features/javascript.feature b/tests/end2end/features/javascript.feature index fb077d6f7..c3ec6ad8a 100644 --- a/tests/end2end/features/javascript.feature +++ b/tests/end2end/features/javascript.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Javascript stuff Integration with javascript. diff --git a/tests/end2end/features/keyinput.feature b/tests/end2end/features/keyinput.feature index 50bda923e..3ab5d2434 100644 --- a/tests/end2end/features/keyinput.feature +++ b/tests/end2end/features/keyinput.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Keyboard input Tests for :clear-keychain and other keyboard input related things. diff --git a/tests/end2end/features/marks.feature b/tests/end2end/features/marks.feature index 921e0e76c..c6821c62a 100644 --- a/tests/end2end/features/marks.feature +++ b/tests/end2end/features/marks.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Setting positional marks Background: diff --git a/tests/end2end/features/misc.feature b/tests/end2end/features/misc.feature index e2f048616..3940d0243 100644 --- a/tests/end2end/features/misc.feature +++ b/tests/end2end/features/misc.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Various utility commands. ## :set-cmd-text diff --git a/tests/end2end/features/navigate.feature b/tests/end2end/features/navigate.feature index ec295c4d1..8d224256c 100644 --- a/tests/end2end/features/navigate.feature +++ b/tests/end2end/features/navigate.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Using :navigate Scenario: :navigate with invalid argument diff --git a/tests/end2end/features/notifications.feature b/tests/end2end/features/notifications.feature index cd34793ef..8f12afd6a 100644 --- a/tests/end2end/features/notifications.feature +++ b/tests/end2end/features/notifications.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Notifications HTML5 notification API interaction diff --git a/tests/end2end/features/open.feature b/tests/end2end/features/open.feature index 3aec41786..62c12aade 100644 --- a/tests/end2end/features/open.feature +++ b/tests/end2end/features/open.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Opening pages Scenario: :open with URL diff --git a/tests/end2end/features/private.feature b/tests/end2end/features/private.feature index 0d0b59375..f6b6429ca 100644 --- a/tests/end2end/features/private.feature +++ b/tests/end2end/features/private.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Using private browsing Background: diff --git a/tests/end2end/features/prompts.feature b/tests/end2end/features/prompts.feature index f4ed605f9..673c4f567 100644 --- a/tests/end2end/features/prompts.feature +++ b/tests/end2end/features/prompts.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Prompts Various prompts (javascript, SSL errors, authentication, etc.) diff --git a/tests/end2end/features/qutescheme.feature b/tests/end2end/features/qutescheme.feature index c5285b221..85f68661a 100644 --- a/tests/end2end/features/qutescheme.feature +++ b/tests/end2end/features/qutescheme.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Special qute:// pages Background: diff --git a/tests/end2end/features/scroll.feature b/tests/end2end/features/scroll.feature index 3aa3f0df4..d83c47fa4 100644 --- a/tests/end2end/features/scroll.feature +++ b/tests/end2end/features/scroll.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Scrolling Tests the various scroll commands. diff --git a/tests/end2end/features/search.feature b/tests/end2end/features/search.feature index 9c477fd4e..62b409a19 100644 --- a/tests/end2end/features/search.feature +++ b/tests/end2end/features/search.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Searching on a page Searching text on the page (like /foo) with different options. diff --git a/tests/end2end/features/sessions.feature b/tests/end2end/features/sessions.feature index c68cebbc2..a5533f014 100644 --- a/tests/end2end/features/sessions.feature +++ b/tests/end2end/features/sessions.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Saving and loading sessions Background: diff --git a/tests/end2end/features/spawn.feature b/tests/end2end/features/spawn.feature index d45b6321e..563259fc8 100644 --- a/tests/end2end/features/spawn.feature +++ b/tests/end2end/features/spawn.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: :spawn Scenario: Running :spawn diff --git a/tests/end2end/features/tabs.feature b/tests/end2end/features/tabs.feature index b60249e6e..a5b557122 100644 --- a/tests/end2end/features/tabs.feature +++ b/tests/end2end/features/tabs.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Tab management Tests for various :tab-* commands. diff --git a/tests/end2end/features/test_backforward_bdd.py b/tests/end2end/features/test_backforward_bdd.py index 15177d9c6..c8737662c 100644 --- a/tests/end2end/features/test_backforward_bdd.py +++ b/tests/end2end/features/test_backforward_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_caret_bdd.py b/tests/end2end/features/test_caret_bdd.py index 8be48849a..50ced4438 100644 --- a/tests/end2end/features/test_caret_bdd.py +++ b/tests/end2end/features/test_caret_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_completion_bdd.py b/tests/end2end/features/test_completion_bdd.py index 05faff4fc..8b186e9c4 100644 --- a/tests/end2end/features/test_completion_bdd.py +++ b/tests/end2end/features/test_completion_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_downloads_bdd.py b/tests/end2end/features/test_downloads_bdd.py index 72f420141..1e6f5a774 100644 --- a/tests/end2end/features/test_downloads_bdd.py +++ b/tests/end2end/features/test_downloads_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_editor_bdd.py b/tests/end2end/features/test_editor_bdd.py index d09f888e3..a969f1785 100644 --- a/tests/end2end/features/test_editor_bdd.py +++ b/tests/end2end/features/test_editor_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_hints_bdd.py b/tests/end2end/features/test_hints_bdd.py index 1747bf462..3be71268c 100644 --- a/tests/end2end/features/test_hints_bdd.py +++ b/tests/end2end/features/test_hints_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_history_bdd.py b/tests/end2end/features/test_history_bdd.py index a68c7d621..7c951fc0c 100644 --- a/tests/end2end/features/test_history_bdd.py +++ b/tests/end2end/features/test_history_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_invoke_bdd.py b/tests/end2end/features/test_invoke_bdd.py index f4fe287f7..333a33e87 100644 --- a/tests/end2end/features/test_invoke_bdd.py +++ b/tests/end2end/features/test_invoke_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_javascript_bdd.py b/tests/end2end/features/test_javascript_bdd.py index d0e6282d2..d11332ab2 100644 --- a/tests/end2end/features/test_javascript_bdd.py +++ b/tests/end2end/features/test_javascript_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_keyinput_bdd.py b/tests/end2end/features/test_keyinput_bdd.py index 7c8ac81aa..a0c8e7f19 100644 --- a/tests/end2end/features/test_keyinput_bdd.py +++ b/tests/end2end/features/test_keyinput_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_marks_bdd.py b/tests/end2end/features/test_marks_bdd.py index f9115ee00..4b93b0df8 100644 --- a/tests/end2end/features/test_marks_bdd.py +++ b/tests/end2end/features/test_marks_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_misc_bdd.py b/tests/end2end/features/test_misc_bdd.py index 3ede5ffe2..0385c6bd5 100644 --- a/tests/end2end/features/test_misc_bdd.py +++ b/tests/end2end/features/test_misc_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_navigate_bdd.py b/tests/end2end/features/test_navigate_bdd.py index 0f2bc1194..22af90f78 100644 --- a/tests/end2end/features/test_navigate_bdd.py +++ b/tests/end2end/features/test_navigate_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_notifications_bdd.py b/tests/end2end/features/test_notifications_bdd.py index 6c0fd5440..ff0539b81 100644 --- a/tests/end2end/features/test_notifications_bdd.py +++ b/tests/end2end/features/test_notifications_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_open_bdd.py b/tests/end2end/features/test_open_bdd.py index 4100fcb88..7889c8ee2 100644 --- a/tests/end2end/features/test_open_bdd.py +++ b/tests/end2end/features/test_open_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_private_bdd.py b/tests/end2end/features/test_private_bdd.py index 1bc58bcb1..3bea48b5d 100644 --- a/tests/end2end/features/test_private_bdd.py +++ b/tests/end2end/features/test_private_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_prompts_bdd.py b/tests/end2end/features/test_prompts_bdd.py index 46cc9c698..61bcf327e 100644 --- a/tests/end2end/features/test_prompts_bdd.py +++ b/tests/end2end/features/test_prompts_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_qutescheme_bdd.py b/tests/end2end/features/test_qutescheme_bdd.py index 3b6145988..b308e6227 100644 --- a/tests/end2end/features/test_qutescheme_bdd.py +++ b/tests/end2end/features/test_qutescheme_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_scroll_bdd.py b/tests/end2end/features/test_scroll_bdd.py index 85cc6d43c..184712750 100644 --- a/tests/end2end/features/test_scroll_bdd.py +++ b/tests/end2end/features/test_scroll_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_search_bdd.py b/tests/end2end/features/test_search_bdd.py index 563152b65..25a77fdc1 100644 --- a/tests/end2end/features/test_search_bdd.py +++ b/tests/end2end/features/test_search_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_sessions_bdd.py b/tests/end2end/features/test_sessions_bdd.py index d1db0315a..f40837a37 100644 --- a/tests/end2end/features/test_sessions_bdd.py +++ b/tests/end2end/features/test_sessions_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_spawn_bdd.py b/tests/end2end/features/test_spawn_bdd.py index a7fbf9bdb..c81c6cae9 100644 --- a/tests/end2end/features/test_spawn_bdd.py +++ b/tests/end2end/features/test_spawn_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_tabs_bdd.py b/tests/end2end/features/test_tabs_bdd.py index 84bfa8928..caac084f8 100644 --- a/tests/end2end/features/test_tabs_bdd.py +++ b/tests/end2end/features/test_tabs_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_urlmarks_bdd.py b/tests/end2end/features/test_urlmarks_bdd.py index 8aea592c3..e747e4374 100644 --- a/tests/end2end/features/test_urlmarks_bdd.py +++ b/tests/end2end/features/test_urlmarks_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_utilcmds_bdd.py b/tests/end2end/features/test_utilcmds_bdd.py index 294dbc10e..153866629 100644 --- a/tests/end2end/features/test_utilcmds_bdd.py +++ b/tests/end2end/features/test_utilcmds_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_yankpaste_bdd.py b/tests/end2end/features/test_yankpaste_bdd.py index b3099b864..c93245c16 100644 --- a/tests/end2end/features/test_yankpaste_bdd.py +++ b/tests/end2end/features/test_yankpaste_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/test_zoom_bdd.py b/tests/end2end/features/test_zoom_bdd.py index adf9a3df2..bf7d67082 100644 --- a/tests/end2end/features/test_zoom_bdd.py +++ b/tests/end2end/features/test_zoom_bdd.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/features/urlmarks.feature b/tests/end2end/features/urlmarks.feature index e55b5839d..00fd14fb6 100644 --- a/tests/end2end/features/urlmarks.feature +++ b/tests/end2end/features/urlmarks.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: quickmarks and bookmarks ## bookmarks diff --git a/tests/end2end/features/utilcmds.feature b/tests/end2end/features/utilcmds.feature index 621a7650b..9fd702d92 100644 --- a/tests/end2end/features/utilcmds.feature +++ b/tests/end2end/features/utilcmds.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Miscellaneous utility commands exposed to the user. Background: diff --git a/tests/end2end/features/yankpaste.feature b/tests/end2end/features/yankpaste.feature index 1ac5df507..f551d732f 100644 --- a/tests/end2end/features/yankpaste.feature +++ b/tests/end2end/features/yankpaste.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Yanking and pasting. :yank, {clipboard} and {primary} can be used to copy/paste the URL or title from/to the clipboard and primary selection. diff --git a/tests/end2end/features/zoom.feature b/tests/end2end/features/zoom.feature index 5de89b65b..919f3fad4 100644 --- a/tests/end2end/features/zoom.feature +++ b/tests/end2end/features/zoom.feature @@ -1,5 +1,3 @@ -# vim: ft=cucumber fileencoding=utf-8 sts=4 sw=4 et: - Feature: Zooming in and out Background: diff --git a/tests/end2end/fixtures/notificationserver.py b/tests/end2end/fixtures/notificationserver.py index ec1953250..1758beb98 100644 --- a/tests/end2end/fixtures/notificationserver.py +++ b/tests/end2end/fixtures/notificationserver.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index a30129beb..c3194b839 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/test_quteprocess.py b/tests/end2end/fixtures/test_quteprocess.py index 7199bf015..2d26c7e18 100644 --- a/tests/end2end/fixtures/test_quteprocess.py +++ b/tests/end2end/fixtures/test_quteprocess.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/test_testprocess.py b/tests/end2end/fixtures/test_testprocess.py index dd16b8b8f..bcc7cb6ca 100644 --- a/tests/end2end/fixtures/test_testprocess.py +++ b/tests/end2end/fixtures/test_testprocess.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/test_webserver.py b/tests/end2end/fixtures/test_webserver.py index ed0c32ae5..b738b43b4 100644 --- a/tests/end2end/fixtures/test_webserver.py +++ b/tests/end2end/fixtures/test_webserver.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/testprocess.py b/tests/end2end/fixtures/testprocess.py index 78c08a4c0..680beec7f 100644 --- a/tests/end2end/fixtures/testprocess.py +++ b/tests/end2end/fixtures/testprocess.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/webserver.py b/tests/end2end/fixtures/webserver.py index fc76c959d..a0168562f 100644 --- a/tests/end2end/fixtures/webserver.py +++ b/tests/end2end/fixtures/webserver.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/webserver_sub.py b/tests/end2end/fixtures/webserver_sub.py index 2bc83a38d..d0d64e258 100644 --- a/tests/end2end/fixtures/webserver_sub.py +++ b/tests/end2end/fixtures/webserver_sub.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/fixtures/webserver_sub_ssl.py b/tests/end2end/fixtures/webserver_sub_ssl.py index cbe7004ad..1dce14da3 100644 --- a/tests/end2end/fixtures/webserver_sub_ssl.py +++ b/tests/end2end/fixtures/webserver_sub_ssl.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/misc/test_runners_e2e.py b/tests/end2end/misc/test_runners_e2e.py index 7c466023d..f41446451 100644 --- a/tests/end2end/misc/test_runners_e2e.py +++ b/tests/end2end/misc/test_runners_e2e.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Jay Kamat # # This file is part of qutebrowser. diff --git a/tests/end2end/test_adblock_e2e.py b/tests/end2end/test_adblock_e2e.py index 0df9aa5ad..8a66a12e1 100644 --- a/tests/end2end/test_adblock_e2e.py +++ b/tests/end2end/test_adblock_e2e.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/test_dirbrowser.py b/tests/end2end/test_dirbrowser.py index ebf31abe2..7b806168d 100644 --- a/tests/end2end/test_dirbrowser.py +++ b/tests/end2end/test_dirbrowser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Daniel Schadt # diff --git a/tests/end2end/test_hints_html.py b/tests/end2end/test_hints_html.py index 5af09649f..ed18a8319 100644 --- a/tests/end2end/test_hints_html.py +++ b/tests/end2end/test_hints_html.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/test_insert_mode.py b/tests/end2end/test_insert_mode.py index 47e481b3d..08a67b958 100644 --- a/tests/end2end/test_insert_mode.py +++ b/tests/end2end/test_insert_mode.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index a86782c1c..56524a031 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/end2end/test_mhtml_e2e.py b/tests/end2end/test_mhtml_e2e.py index 4851f0a98..7b3c3a4eb 100644 --- a/tests/end2end/test_mhtml_e2e.py +++ b/tests/end2end/test_mhtml_e2e.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/fixtures.py b/tests/helpers/fixtures.py index d4744c67d..9894c78ce 100644 --- a/tests/helpers/fixtures.py +++ b/tests/helpers/fixtures.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/logfail.py b/tests/helpers/logfail.py index 15d5a9253..1803dc963 100644 --- a/tests/helpers/logfail.py +++ b/tests/helpers/logfail.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/messagemock.py b/tests/helpers/messagemock.py index 3ec882e54..4bd93e66c 100644 --- a/tests/helpers/messagemock.py +++ b/tests/helpers/messagemock.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/stubs.py b/tests/helpers/stubs.py index dcc38ee10..341d1de2a 100644 --- a/tests/helpers/stubs.py +++ b/tests/helpers/stubs.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/test_helper_utils.py b/tests/helpers/test_helper_utils.py index 3a5f4c4bc..1d397b4b4 100644 --- a/tests/helpers/test_helper_utils.py +++ b/tests/helpers/test_helper_utils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/test_logfail.py b/tests/helpers/test_logfail.py index 910f5cbf4..6fdc56cd9 100644 --- a/tests/helpers/test_logfail.py +++ b/tests/helpers/test_logfail.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/test_stubs.py b/tests/helpers/test_stubs.py index 6def48128..8a10f328b 100644 --- a/tests/helpers/test_stubs.py +++ b/tests/helpers/test_stubs.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/helpers/testutils.py b/tests/helpers/testutils.py index 0c8cdb8d0..1be835130 100644 --- a/tests/helpers/testutils.py +++ b/tests/helpers/testutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/test_conftest.py b/tests/test_conftest.py index fedc6b43f..7aa2e9193 100644 --- a/tests/test_conftest.py +++ b/tests/test_conftest.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/api/test_cmdutils.py b/tests/unit/api/test_cmdutils.py index b6650078c..ea979fc0e 100644 --- a/tests/unit/api/test_cmdutils.py +++ b/tests/unit/api/test_cmdutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_browsertab.py b/tests/unit/browser/test_browsertab.py index 60ae0942e..4285a0dc6 100644 --- a/tests/unit/browser/test_browsertab.py +++ b/tests/unit/browser/test_browsertab.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_caret.py b/tests/unit/browser/test_caret.py index 60c401e4f..1b02ef169 100644 --- a/tests/unit/browser/test_caret.py +++ b/tests/unit/browser/test_caret.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_downloads.py b/tests/unit/browser/test_downloads.py index 16dee0889..7c50bca5c 100644 --- a/tests/unit/browser/test_downloads.py +++ b/tests/unit/browser/test_downloads.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_downloadview.py b/tests/unit/browser/test_downloadview.py index a64b6c12e..4058d7e80 100644 --- a/tests/unit/browser/test_downloadview.py +++ b/tests/unit/browser/test_downloadview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_hints.py b/tests/unit/browser/test_hints.py index 403af74f8..4946059aa 100644 --- a/tests/unit/browser/test_hints.py +++ b/tests/unit/browser/test_hints.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_history.py b/tests/unit/browser/test_history.py index 4997567d3..7122efc75 100644 --- a/tests/unit/browser/test_history.py +++ b/tests/unit/browser/test_history.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_inspector.py b/tests/unit/browser/test_inspector.py index 35b570482..bdc220dc8 100644 --- a/tests/unit/browser/test_inspector.py +++ b/tests/unit/browser/test_inspector.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_navigate.py b/tests/unit/browser/test_navigate.py index b96624d0a..cc0b1dd56 100644 --- a/tests/unit/browser/test_navigate.py +++ b/tests/unit/browser/test_navigate.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_notification.py b/tests/unit/browser/test_notification.py index e77b86c1a..ad2d203a9 100644 --- a/tests/unit/browser/test_notification.py +++ b/tests/unit/browser/test_notification.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_pdfjs.py b/tests/unit/browser/test_pdfjs.py index d002a3823..9e99c4efa 100644 --- a/tests/unit/browser/test_pdfjs.py +++ b/tests/unit/browser/test_pdfjs.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015 Daniel Schadt # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_qutescheme.py b/tests/unit/browser/test_qutescheme.py index 3caee5621..0c000d84f 100644 --- a/tests/unit/browser/test_qutescheme.py +++ b/tests/unit/browser/test_qutescheme.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # Copyright 2017-2018 Imran Sobir # diff --git a/tests/unit/browser/test_shared.py b/tests/unit/browser/test_shared.py index 9d12554af..a2cb8cc9f 100644 --- a/tests/unit/browser/test_shared.py +++ b/tests/unit/browser/test_shared.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_signalfilter.py b/tests/unit/browser/test_signalfilter.py index 05e02bfd5..20e3ea8f6 100644 --- a/tests/unit/browser/test_signalfilter.py +++ b/tests/unit/browser/test_signalfilter.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/test_urlmarks.py b/tests/unit/browser/test_urlmarks.py index d2bac7692..29c140909 100644 --- a/tests/unit/browser/test_urlmarks.py +++ b/tests/unit/browser/test_urlmarks.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_darkmode.py b/tests/unit/browser/webengine/test_darkmode.py index eab7af511..7d6a12716 100644 --- a/tests/unit/browser/webengine/test_darkmode.py +++ b/tests/unit/browser/webengine/test_darkmode.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2020-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_spell.py b/tests/unit/browser/webengine/test_spell.py index 859f4209b..7b5122aba 100644 --- a/tests/unit/browser/webengine/test_spell.py +++ b/tests/unit/browser/webengine/test_spell.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # Copyright 2017-2018 Michal Siedlaczek diff --git a/tests/unit/browser/webengine/test_webengine_cookies.py b/tests/unit/browser/webengine/test_webengine_cookies.py index ff8668ed3..c80b318e2 100644 --- a/tests/unit/browser/webengine/test_webengine_cookies.py +++ b/tests/unit/browser/webengine/test_webengine_cookies.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_webenginedownloads.py b/tests/unit/browser/webengine/test_webenginedownloads.py index 3902b9f2b..eecd2b65f 100644 --- a/tests/unit/browser/webengine/test_webenginedownloads.py +++ b/tests/unit/browser/webengine/test_webenginedownloads.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_webengineinterceptor.py b/tests/unit/browser/webengine/test_webengineinterceptor.py index f48d4a715..a609cad4b 100644 --- a/tests/unit/browser/webengine/test_webengineinterceptor.py +++ b/tests/unit/browser/webengine/test_webengineinterceptor.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_webenginesettings.py b/tests/unit/browser/webengine/test_webenginesettings.py index 838ddd1b2..e1c9adccd 100644 --- a/tests/unit/browser/webengine/test_webenginesettings.py +++ b/tests/unit/browser/webengine/test_webenginesettings.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_webenginetab.py b/tests/unit/browser/webengine/test_webenginetab.py index c5c611065..a0bd516ba 100644 --- a/tests/unit/browser/webengine/test_webenginetab.py +++ b/tests/unit/browser/webengine/test_webenginetab.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webengine/test_webview.py b/tests/unit/browser/webengine/test_webview.py index 2ddcc8733..bfef790d4 100644 --- a/tests/unit/browser/webengine/test_webview.py +++ b/tests/unit/browser/webengine/test_webview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/http/test_content_disposition.py b/tests/unit/browser/webkit/http/test_content_disposition.py index 52f97478b..03e77f72a 100644 --- a/tests/unit/browser/webkit/http/test_content_disposition.py +++ b/tests/unit/browser/webkit/http/test_content_disposition.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/http/test_http.py b/tests/unit/browser/webkit/http/test_http.py index 3e1a23105..69b0458cd 100644 --- a/tests/unit/browser/webkit/http/test_http.py +++ b/tests/unit/browser/webkit/http/test_http.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/network/test_filescheme.py b/tests/unit/browser/webkit/network/test_filescheme.py index 4f9d22108..9f2c4522c 100644 --- a/tests/unit/browser/webkit/network/test_filescheme.py +++ b/tests/unit/browser/webkit/network/test_filescheme.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Antoni Boucher (antoyo) # diff --git a/tests/unit/browser/webkit/network/test_networkmanager.py b/tests/unit/browser/webkit/network/test_networkmanager.py index 8140fce95..de1428d36 100644 --- a/tests/unit/browser/webkit/network/test_networkmanager.py +++ b/tests/unit/browser/webkit/network/test_networkmanager.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/network/test_networkreply.py b/tests/unit/browser/webkit/network/test_networkreply.py index fc400c1b2..0223a7a63 100644 --- a/tests/unit/browser/webkit/network/test_networkreply.py +++ b/tests/unit/browser/webkit/network/test_networkreply.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/network/test_pac.py b/tests/unit/browser/webkit/network/test_pac.py index 8b9e29912..1b1606bc3 100644 --- a/tests/unit/browser/webkit/network/test_pac.py +++ b/tests/unit/browser/webkit/network/test_pac.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/test_cache.py b/tests/unit/browser/webkit/test_cache.py index 8e43b583f..1add257cd 100644 --- a/tests/unit/browser/webkit/test_cache.py +++ b/tests/unit/browser/webkit/test_cache.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 lamarpavel # diff --git a/tests/unit/browser/webkit/test_certificateerror.py b/tests/unit/browser/webkit/test_certificateerror.py index ad6d83262..73f1f1544 100644 --- a/tests/unit/browser/webkit/test_certificateerror.py +++ b/tests/unit/browser/webkit/test_certificateerror.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/test_cookies.py b/tests/unit/browser/webkit/test_cookies.py index f2a64f3bc..31ed1828d 100644 --- a/tests/unit/browser/webkit/test_cookies.py +++ b/tests/unit/browser/webkit/test_cookies.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Alexander Cogneau (acogneau) : # diff --git a/tests/unit/browser/webkit/test_mhtml.py b/tests/unit/browser/webkit/test_mhtml.py index 2570850ea..834841cf5 100644 --- a/tests/unit/browser/webkit/test_mhtml.py +++ b/tests/unit/browser/webkit/test_mhtml.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Daniel Schadt # diff --git a/tests/unit/browser/webkit/test_tabhistory.py b/tests/unit/browser/webkit/test_tabhistory.py index db9d1abcb..047454e25 100644 --- a/tests/unit/browser/webkit/test_tabhistory.py +++ b/tests/unit/browser/webkit/test_tabhistory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/test_webkit_view.py b/tests/unit/browser/webkit/test_webkit_view.py index fcaaa2256..b121c9dd9 100644 --- a/tests/unit/browser/webkit/test_webkit_view.py +++ b/tests/unit/browser/webkit/test_webkit_view.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/test_webkitelem.py b/tests/unit/browser/webkit/test_webkitelem.py index 504f1d64a..23941f989 100644 --- a/tests/unit/browser/webkit/test_webkitelem.py +++ b/tests/unit/browser/webkit/test_webkitelem.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/browser/webkit/test_webkitsettings.py b/tests/unit/browser/webkit/test_webkitsettings.py index 5fb6567d7..c70f652e6 100644 --- a/tests/unit/browser/webkit/test_webkitsettings.py +++ b/tests/unit/browser/webkit/test_webkitsettings.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/commands/test_argparser.py b/tests/unit/commands/test_argparser.py index 2d95e4b4e..51ba92073 100644 --- a/tests/unit/commands/test_argparser.py +++ b/tests/unit/commands/test_argparser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/commands/test_cmdexc.py b/tests/unit/commands/test_cmdexc.py index f80131e29..de2b3beae 100644 --- a/tests/unit/commands/test_cmdexc.py +++ b/tests/unit/commands/test_cmdexc.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2022 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/commands/test_parser.py b/tests/unit/commands/test_parser.py index a0c2fe8f3..c679da5f7 100644 --- a/tests/unit/commands/test_parser.py +++ b/tests/unit/commands/test_parser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/commands/test_userscripts.py b/tests/unit/commands/test_userscripts.py index bc83ed499..4e161d2dd 100644 --- a/tests/unit/commands/test_userscripts.py +++ b/tests/unit/commands/test_userscripts.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_completer.py b/tests/unit/completion/test_completer.py index f8cfc9039..3b4b47c37 100644 --- a/tests/unit/completion/test_completer.py +++ b/tests/unit/completion/test_completer.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_completiondelegate.py b/tests/unit/completion/test_completiondelegate.py index 31df6f1ce..bdbd7f666 100644 --- a/tests/unit/completion/test_completiondelegate.py +++ b/tests/unit/completion/test_completiondelegate.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_completionmodel.py b/tests/unit/completion/test_completionmodel.py index 95fadd57b..02d91bbda 100644 --- a/tests/unit/completion/test_completionmodel.py +++ b/tests/unit/completion/test_completionmodel.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_completionwidget.py b/tests/unit/completion/test_completionwidget.py index 90d5a5efb..c732c9bf7 100644 --- a/tests/unit/completion/test_completionwidget.py +++ b/tests/unit/completion/test_completionwidget.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_histcategory.py b/tests/unit/completion/test_histcategory.py index 648017cf0..7a11dbc6d 100644 --- a/tests/unit/completion/test_histcategory.py +++ b/tests/unit/completion/test_histcategory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_listcategory.py b/tests/unit/completion/test_listcategory.py index 4ebbd59e6..39ccfa0b9 100644 --- a/tests/unit/completion/test_listcategory.py +++ b/tests/unit/completion/test_listcategory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/completion/test_models.py b/tests/unit/completion/test_models.py index fb44006aa..6dea77321 100644 --- a/tests/unit/completion/test_models.py +++ b/tests/unit/completion/test_models.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/components/test_blockutils.py b/tests/unit/components/test_blockutils.py index 9d259a0b8..b5900bcaa 100644 --- a/tests/unit/components/test_blockutils.py +++ b/tests/unit/components/test_blockutils.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: #!/usr/bin/env python3 # Copyright 2020-2021 Árni Dagur diff --git a/tests/unit/components/test_braveadblock.py b/tests/unit/components/test_braveadblock.py index 7dcffc91f..217e4e3b3 100644 --- a/tests/unit/components/test_braveadblock.py +++ b/tests/unit/components/test_braveadblock.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/components/test_hostblock.py b/tests/unit/components/test_hostblock.py index 92791f71f..557e9085f 100644 --- a/tests/unit/components/test_hostblock.py +++ b/tests/unit/components/test_hostblock.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: #!/usr/bin/env python3 # Copyright 2015 Corentin Julé diff --git a/tests/unit/components/test_misccommands.py b/tests/unit/components/test_misccommands.py index 3a4118fb4..c7e566659 100644 --- a/tests/unit/components/test_misccommands.py +++ b/tests/unit/components/test_misccommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/components/test_readlinecommands.py b/tests/unit/components/test_readlinecommands.py index d10867a54..227dcddee 100644 --- a/tests/unit/components/test_readlinecommands.py +++ b/tests/unit/components/test_readlinecommands.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/config/test_config.py b/tests/unit/config/test_config.py index fbb687947..f96c4c425 100644 --- a/tests/unit/config/test_config.py +++ b/tests/unit/config/test_config.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configcache.py b/tests/unit/config/test_configcache.py index 87514bada..985ad24d2 100644 --- a/tests/unit/config/test_configcache.py +++ b/tests/unit/config/test_configcache.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Jay Kamat # # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py index 40dfa48f8..d433df145 100644 --- a/tests/unit/config/test_configcommands.py +++ b/tests/unit/config/test_configcommands.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configdata.py b/tests/unit/config/test_configdata.py index 7afb6a2a9..d9d236e6c 100644 --- a/tests/unit/config/test_configdata.py +++ b/tests/unit/config/test_configdata.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configexc.py b/tests/unit/config/test_configexc.py index 57d6391eb..7cecc120b 100644 --- a/tests/unit/config/test_configexc.py +++ b/tests/unit/config/test_configexc.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configfiles.py b/tests/unit/config/test_configfiles.py index a8d406ed5..ac4dfe0cd 100644 --- a/tests/unit/config/test_configfiles.py +++ b/tests/unit/config/test_configfiles.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2017-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configinit.py b/tests/unit/config/test_configinit.py index 77867628b..bb2124f3a 100644 --- a/tests/unit/config/test_configinit.py +++ b/tests/unit/config/test_configinit.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2017-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configtypes.py b/tests/unit/config/test_configtypes.py index d89083a86..404380c54 100644 --- a/tests/unit/config/test_configtypes.py +++ b/tests/unit/config/test_configtypes.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2014-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_configutils.py b/tests/unit/config/test_configutils.py index 15f031bd4..6a040a7a3 100644 --- a/tests/unit/config/test_configutils.py +++ b/tests/unit/config/test_configutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/config/test_qtargs.py b/tests/unit/config/test_qtargs.py index a65847929..fc16b59d9 100644 --- a/tests/unit/config/test_qtargs.py +++ b/tests/unit/config/test_qtargs.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2017-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_qtargs_locale_workaround.py b/tests/unit/config/test_qtargs_locale_workaround.py index c70ab0b63..bc48cbea6 100644 --- a/tests/unit/config/test_qtargs_locale_workaround.py +++ b/tests/unit/config/test_qtargs_locale_workaround.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_stylesheet.py b/tests/unit/config/test_stylesheet.py index 2a9e5fc6d..ea413d24d 100644 --- a/tests/unit/config/test_stylesheet.py +++ b/tests/unit/config/test_stylesheet.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2019-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/config/test_websettings.py b/tests/unit/config/test_websettings.py index f42563727..ecc3cf669 100644 --- a/tests/unit/config/test_websettings.py +++ b/tests/unit/config/test_websettings.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/extensions/test_loader.py b/tests/unit/extensions/test_loader.py index 488c3edc2..2f51a4b2b 100644 --- a/tests/unit/extensions/test_loader.py +++ b/tests/unit/extensions/test_loader.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/javascript/conftest.py b/tests/unit/javascript/conftest.py index 97ff994e4..492a72dac 100644 --- a/tests/unit/javascript/conftest.py +++ b/tests/unit/javascript/conftest.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/javascript/position_caret/test_position_caret.py b/tests/unit/javascript/position_caret/test_position_caret.py index 1c399392f..1f10aae2b 100644 --- a/tests/unit/javascript/position_caret/test_position_caret.py +++ b/tests/unit/javascript/position_caret/test_position_caret.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/javascript/stylesheet/test_stylesheet_js.py b/tests/unit/javascript/stylesheet/test_stylesheet_js.py index fd0189919..3b48abdf8 100644 --- a/tests/unit/javascript/stylesheet/test_stylesheet_js.py +++ b/tests/unit/javascript/stylesheet/test_stylesheet_js.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Jay Kamat # # This file is part of qutebrowser. diff --git a/tests/unit/javascript/test_greasemonkey.py b/tests/unit/javascript/test_greasemonkey.py index 770023c18..335e80596 100644 --- a/tests/unit/javascript/test_greasemonkey.py +++ b/tests/unit/javascript/test_greasemonkey.py @@ -1,4 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2017-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/javascript/test_js_execution.py b/tests/unit/javascript/test_js_execution.py index 8a21d415a..542b56975 100644 --- a/tests/unit/javascript/test_js_execution.py +++ b/tests/unit/javascript/test_js_execution.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/javascript/test_js_quirks.py b/tests/unit/javascript/test_js_quirks.py index da05a74a1..46dc83f02 100644 --- a/tests/unit/javascript/test_js_quirks.py +++ b/tests/unit/javascript/test_js_quirks.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/conftest.py b/tests/unit/keyinput/conftest.py index e152755aa..b4c3df155 100644 --- a/tests/unit/keyinput/conftest.py +++ b/tests/unit/keyinput/conftest.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) : # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/key_data.py b/tests/unit/keyinput/key_data.py index 2004a081f..3826d3ee9 100644 --- a/tests/unit/keyinput/key_data.py +++ b/tests/unit/keyinput/key_data.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/test_basekeyparser.py b/tests/unit/keyinput/test_basekeyparser.py index c2592c197..52e0a01df 100644 --- a/tests/unit/keyinput/test_basekeyparser.py +++ b/tests/unit/keyinput/test_basekeyparser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) : # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/test_bindingtrie.py b/tests/unit/keyinput/test_bindingtrie.py index b0844c980..7240379c7 100644 --- a/tests/unit/keyinput/test_bindingtrie.py +++ b/tests/unit/keyinput/test_bindingtrie.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2019-2021 Jay Kamat : # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/test_keyutils.py b/tests/unit/keyinput/test_keyutils.py index 8e7c3e276..2c0740c20 100644 --- a/tests/unit/keyinput/test_keyutils.py +++ b/tests/unit/keyinput/test_keyutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/test_modeman.py b/tests/unit/keyinput/test_modeman.py index 8d9a98002..8c26e9730 100644 --- a/tests/unit/keyinput/test_modeman.py +++ b/tests/unit/keyinput/test_modeman.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/keyinput/test_modeparsers.py b/tests/unit/keyinput/test_modeparsers.py index b997b0ab9..fb719645d 100644 --- a/tests/unit/keyinput/test_modeparsers.py +++ b/tests/unit/keyinput/test_modeparsers.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) : # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/statusbar/test_backforward.py b/tests/unit/mainwindow/statusbar/test_backforward.py index ac73f8ee1..a9a7fa0d1 100644 --- a/tests/unit/mainwindow/statusbar/test_backforward.py +++ b/tests/unit/mainwindow/statusbar/test_backforward.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/statusbar/test_percentage.py b/tests/unit/mainwindow/statusbar/test_percentage.py index 392fe03c1..97f895ace 100644 --- a/tests/unit/mainwindow/statusbar/test_percentage.py +++ b/tests/unit/mainwindow/statusbar/test_percentage.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/statusbar/test_progress.py b/tests/unit/mainwindow/statusbar/test_progress.py index 1cc3bf9af..2b4f2d9a6 100644 --- a/tests/unit/mainwindow/statusbar/test_progress.py +++ b/tests/unit/mainwindow/statusbar/test_progress.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/statusbar/test_tabindex.py b/tests/unit/mainwindow/statusbar/test_tabindex.py index b46f93efe..39dbb958c 100644 --- a/tests/unit/mainwindow/statusbar/test_tabindex.py +++ b/tests/unit/mainwindow/statusbar/test_tabindex.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/statusbar/test_textbase.py b/tests/unit/mainwindow/statusbar/test_textbase.py index 6bceb4bc4..07a31f473 100644 --- a/tests/unit/mainwindow/statusbar/test_textbase.py +++ b/tests/unit/mainwindow/statusbar/test_textbase.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/statusbar/test_url.py b/tests/unit/mainwindow/statusbar/test_url.py index 353c47a3c..395d4da10 100644 --- a/tests/unit/mainwindow/statusbar/test_url.py +++ b/tests/unit/mainwindow/statusbar/test_url.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Clayton Craft (craftyguy) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/test_messageview.py b/tests/unit/mainwindow/test_messageview.py index 5c3f14b2e..838c46508 100644 --- a/tests/unit/mainwindow/test_messageview.py +++ b/tests/unit/mainwindow/test_messageview.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/test_prompt.py b/tests/unit/mainwindow/test_prompt.py index 4dbe5a41a..f647b002a 100644 --- a/tests/unit/mainwindow/test_prompt.py +++ b/tests/unit/mainwindow/test_prompt.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/test_tabbedbrowser.py b/tests/unit/mainwindow/test_tabbedbrowser.py index 2aa83735c..eb5035810 100644 --- a/tests/unit/mainwindow/test_tabbedbrowser.py +++ b/tests/unit/mainwindow/test_tabbedbrowser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/mainwindow/test_tabwidget.py b/tests/unit/mainwindow/test_tabwidget.py index d6289dac6..077d60dc3 100644 --- a/tests/unit/mainwindow/test_tabwidget.py +++ b/tests/unit/mainwindow/test_tabwidget.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Daniel Schadt # diff --git a/tests/unit/misc/test_autoupdate.py b/tests/unit/misc/test_autoupdate.py index 72b63b0c4..afc390cfb 100644 --- a/tests/unit/misc/test_autoupdate.py +++ b/tests/unit/misc/test_autoupdate.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # Copyright 2015-2018 Alexander Cogneau (acogneau) : # diff --git a/tests/unit/misc/test_checkpyver.py b/tests/unit/misc/test_checkpyver.py index ffadec31b..034f35e5f 100644 --- a/tests/unit/misc/test_checkpyver.py +++ b/tests/unit/misc/test_checkpyver.py @@ -1,6 +1,4 @@ # Copyright 2015-2021 Florian Bruhin (The Compiler) -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # This file is part of qutebrowser. # # qutebrowser is free software: you can redistribute it and/or modify diff --git a/tests/unit/misc/test_cmdhistory.py b/tests/unit/misc/test_cmdhistory.py index 8ebbeb76a..33e6e7199 100644 --- a/tests/unit/misc/test_cmdhistory.py +++ b/tests/unit/misc/test_cmdhistory.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The-Compiler) # Copyright 2015-2018 Alexander Cogneau (acogneau) # diff --git a/tests/unit/misc/test_crashdialog.py b/tests/unit/misc/test_crashdialog.py index 3948127c2..81760434e 100644 --- a/tests/unit/misc/test_crashdialog.py +++ b/tests/unit/misc/test_crashdialog.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_earlyinit.py b/tests/unit/misc/test_earlyinit.py index e29cc0a39..95d504163 100644 --- a/tests/unit/misc/test_earlyinit.py +++ b/tests/unit/misc/test_earlyinit.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The-Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_editor.py b/tests/unit/misc/test_editor.py index 4fd915062..cbfebbb13 100644 --- a/tests/unit/misc/test_editor.py +++ b/tests/unit/misc/test_editor.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_elf.py b/tests/unit/misc/test_elf.py index ee95f8625..beac07acc 100644 --- a/tests/unit/misc/test_elf.py +++ b/tests/unit/misc/test_elf.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2021 Florian Bruhin (The-Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_guiprocess.py b/tests/unit/misc/test_guiprocess.py index dac4733a0..a013bdf83 100644 --- a/tests/unit/misc/test_guiprocess.py +++ b/tests/unit/misc/test_guiprocess.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_ipc.py b/tests/unit/misc/test_ipc.py index 2390c6f90..c63706298 100644 --- a/tests/unit/misc/test_ipc.py +++ b/tests/unit/misc/test_ipc.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_keyhints.py b/tests/unit/misc/test_keyhints.py index 922f39331..93805af8a 100644 --- a/tests/unit/misc/test_keyhints.py +++ b/tests/unit/misc/test_keyhints.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_lineparser.py b/tests/unit/misc/test_lineparser.py index 0384d3498..a15d70a57 100644 --- a/tests/unit/misc/test_lineparser.py +++ b/tests/unit/misc/test_lineparser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_miscwidgets.py b/tests/unit/misc/test_miscwidgets.py index 8ec40008b..713919ddd 100644 --- a/tests/unit/misc/test_miscwidgets.py +++ b/tests/unit/misc/test_miscwidgets.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_msgbox.py b/tests/unit/misc/test_msgbox.py index 6eee28f32..7f118f8cd 100644 --- a/tests/unit/misc/test_msgbox.py +++ b/tests/unit/misc/test_msgbox.py @@ -1,6 +1,4 @@ # Copyright 2015-2021 Florian Bruhin (The Compiler) -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # This file is part of qutebrowser. # # qutebrowser is free software: you can redistribute it and/or modify diff --git a/tests/unit/misc/test_objects.py b/tests/unit/misc/test_objects.py index 44425eb29..2a12f58d3 100644 --- a/tests/unit/misc/test_objects.py +++ b/tests/unit/misc/test_objects.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_pastebin.py b/tests/unit/misc/test_pastebin.py index 906c4c3c6..f8a28cc11 100644 --- a/tests/unit/misc/test_pastebin.py +++ b/tests/unit/misc/test_pastebin.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The-Compiler) # Copyright 2016-2018 Anna Kobak (avk) : # diff --git a/tests/unit/misc/test_sessions.py b/tests/unit/misc/test_sessions.py index a19f69761..f248a729f 100644 --- a/tests/unit/misc/test_sessions.py +++ b/tests/unit/misc/test_sessions.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_split.py b/tests/unit/misc/test_split.py index eec923af2..2632fd3bf 100644 --- a/tests/unit/misc/test_split.py +++ b/tests/unit/misc/test_split.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_split_hypothesis.py b/tests/unit/misc/test_split_hypothesis.py index 9a65c56f1..03701fb69 100644 --- a/tests/unit/misc/test_split_hypothesis.py +++ b/tests/unit/misc/test_split_hypothesis.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_sql.py b/tests/unit/misc/test_sql.py index 5e33a5a1e..b6991807e 100644 --- a/tests/unit/misc/test_sql.py +++ b/tests/unit/misc/test_sql.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Ryan Roden-Corrent (rcorre) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_throttle.py b/tests/unit/misc/test_throttle.py index e9d6267a1..38e6165d6 100644 --- a/tests/unit/misc/test_throttle.py +++ b/tests/unit/misc/test_throttle.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Jay Kamat : # # This file is part of qutebrowser. diff --git a/tests/unit/misc/test_utilcmds.py b/tests/unit/misc/test_utilcmds.py index 2f3acc2f8..79a810efa 100644 --- a/tests/unit/misc/test_utilcmds.py +++ b/tests/unit/misc/test_utilcmds.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/misc/userscripts/test_qute_lastpass.py b/tests/unit/misc/userscripts/test_qute_lastpass.py index b95fa5f3f..774093122 100644 --- a/tests/unit/misc/userscripts/test_qute_lastpass.py +++ b/tests/unit/misc/userscripts/test_qute_lastpass.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/scripts/test_check_coverage.py b/tests/unit/scripts/test_check_coverage.py index abb0969b6..965ff4dd6 100644 --- a/tests/unit/scripts/test_check_coverage.py +++ b/tests/unit/scripts/test_check_coverage.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/scripts/test_dictcli.py b/tests/unit/scripts/test_dictcli.py index 799c3f7ea..26a4530ed 100644 --- a/tests/unit/scripts/test_dictcli.py +++ b/tests/unit/scripts/test_dictcli.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The-Compiler) # Copyright 2017-2018 Michal Siedlaczek diff --git a/tests/unit/scripts/test_importer.py b/tests/unit/scripts/test_importer.py index 54d6dcb12..f4c92b4ce 100644 --- a/tests/unit/scripts/test_importer.py +++ b/tests/unit/scripts/test_importer.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2017-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/scripts/test_problemmatchers.py b/tests/unit/scripts/test_problemmatchers.py index 79297276f..439bb82b4 100644 --- a/tests/unit/scripts/test_problemmatchers.py +++ b/tests/unit/scripts/test_problemmatchers.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/scripts/test_run_vulture.py b/tests/unit/scripts/test_run_vulture.py index 801241310..630a543ab 100644 --- a/tests/unit/scripts/test_run_vulture.py +++ b/tests/unit/scripts/test_run_vulture.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # This file is part of qutebrowser. diff --git a/tests/unit/test_app.py b/tests/unit/test_app.py index a66f8451b..e97fb7e7c 100644 --- a/tests/unit/test_app.py +++ b/tests/unit/test_app.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/test_qt_machinery.py b/tests/unit/test_qt_machinery.py index 53a715262..1618e9e6f 100644 --- a/tests/unit/test_qt_machinery.py +++ b/tests/unit/test_qt_machinery.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2023 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/test_qutebrowser.py b/tests/unit/test_qutebrowser.py index 36b4065a1..d8a6c7125 100644 --- a/tests/unit/test_qutebrowser.py +++ b/tests/unit/test_qutebrowser.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2020-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/overflow_test_cases.py b/tests/unit/utils/overflow_test_cases.py index 2f3368be3..a69d0ca7b 100644 --- a/tests/unit/utils/overflow_test_cases.py +++ b/tests/unit/utils/overflow_test_cases.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_debug.py b/tests/unit/utils/test_debug.py index 6d7135ecd..f02a3c968 100644 --- a/tests/unit/utils/test_debug.py +++ b/tests/unit/utils/test_debug.py @@ -1,6 +1,4 @@ # Copyright 2014-2021 Florian Bruhin (The Compiler) -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # # This file is part of qutebrowser. # diff --git a/tests/unit/utils/test_error.py b/tests/unit/utils/test_error.py index 576a048de..425cab036 100644 --- a/tests/unit/utils/test_error.py +++ b/tests/unit/utils/test_error.py @@ -1,6 +1,4 @@ # Copyright 2015-2021 Florian Bruhin (The Compiler) -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # This file is part of qutebrowser. # # qutebrowser is free software: you can redistribute it and/or modify diff --git a/tests/unit/utils/test_javascript.py b/tests/unit/utils/test_javascript.py index 7a97ef6d1..8aeee2eb6 100644 --- a/tests/unit/utils/test_javascript.py +++ b/tests/unit/utils/test_javascript.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_jinja.py b/tests/unit/utils/test_jinja.py index 28ff09525..c84363758 100644 --- a/tests/unit/utils/test_jinja.py +++ b/tests/unit/utils/test_jinja.py @@ -1,6 +1,4 @@ # Copyright 2014-2021 Florian Bruhin (The Compiler) -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # # This file is part of qutebrowser. # diff --git a/tests/unit/utils/test_log.py b/tests/unit/utils/test_log.py index 921d354d1..51b014f81 100644 --- a/tests/unit/utils/test_log.py +++ b/tests/unit/utils/test_log.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_qtutils.py b/tests/unit/utils/test_qtutils.py index be53661e7..711a999bb 100644 --- a/tests/unit/utils/test_qtutils.py +++ b/tests/unit/utils/test_qtutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_resources.py b/tests/unit/utils/test_resources.py index 6a11ff588..ab2139b02 100644 --- a/tests/unit/utils/test_resources.py +++ b/tests/unit/utils/test_resources.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_standarddir.py b/tests/unit/utils/test_standarddir.py index ef1da5a07..812088995 100644 --- a/tests/unit/utils/test_standarddir.py +++ b/tests/unit/utils/test_standarddir.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_urlmatch.py b/tests/unit/utils/test_urlmatch.py index 1a9eb083c..ae1f2383e 100644 --- a/tests/unit/utils/test_urlmatch.py +++ b/tests/unit/utils/test_urlmatch.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2018-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_urlutils.py b/tests/unit/utils/test_urlutils.py index a94ecef6a..d433783cf 100644 --- a/tests/unit/utils/test_urlutils.py +++ b/tests/unit/utils/test_urlutils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_utils.py b/tests/unit/utils/test_utils.py index ad2c8b5f7..f368a31d8 100644 --- a/tests/unit/utils/test_utils.py +++ b/tests/unit/utils/test_utils.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/test_version.py b/tests/unit/utils/test_version.py index 3d0fe7b9f..691b0189c 100644 --- a/tests/unit/utils/test_version.py +++ b/tests/unit/utils/test_version.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/usertypes/test_misc.py b/tests/unit/utils/usertypes/test_misc.py index 216ec70b2..fc38576ac 100644 --- a/tests/unit/utils/usertypes/test_misc.py +++ b/tests/unit/utils/usertypes/test_misc.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2016-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/usertypes/test_neighborlist.py b/tests/unit/utils/usertypes/test_neighborlist.py index 3abaeb3a7..42a1ec961 100644 --- a/tests/unit/utils/usertypes/test_neighborlist.py +++ b/tests/unit/utils/usertypes/test_neighborlist.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2014-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/usertypes/test_question.py b/tests/unit/utils/usertypes/test_question.py index 5e3731109..061154132 100644 --- a/tests/unit/utils/usertypes/test_question.py +++ b/tests/unit/utils/usertypes/test_question.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. diff --git a/tests/unit/utils/usertypes/test_timer.py b/tests/unit/utils/usertypes/test_timer.py index 97c116f01..2191f850e 100644 --- a/tests/unit/utils/usertypes/test_timer.py +++ b/tests/unit/utils/usertypes/test_timer.py @@ -1,5 +1,3 @@ -# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: - # Copyright 2015-2021 Florian Bruhin (The Compiler) # # This file is part of qutebrowser. -- cgit v1.2.3-54-g00ecf From 6f727664a9d8945e1f536b69ea0f3b0aae9e29e0 Mon Sep 17 00:00:00 2001 From: Philipp Albrecht Date: Fri, 30 Jun 2023 11:03:19 +0200 Subject: Add misc check to prevent vim modelines We deprecated vim modelines. The introduced misc check will keep old pull requests from re-introducing vim modelines. --- scripts/dev/misc_checks.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/scripts/dev/misc_checks.py b/scripts/dev/misc_checks.py index 82c3d48c1..a1df9e51d 100644 --- a/scripts/dev/misc_checks.py +++ b/scripts/dev/misc_checks.py @@ -397,6 +397,25 @@ def check_userscript_shebangs(_args: argparse.Namespace) -> bool: return ok +def check_vim_modelines(args: argparse.Namespace) -> bool: + """Check that we're not using vim modelines.""" + ok = True + try: + for path in _get_files(verbose=args.verbose): + with tokenize.open(str(path)) as f: + for num, line in enumerate(f, start=1): + if not line.startswith("# vim:"): + continue + print(f"{path}:{num}: Remove vim modeline " + "(deprecated in favor of .editorconfig)") + ok = False + except Exception: + traceback.print_exc() + ok = False + + return ok + + def main() -> int: checkers = { 'git': check_git, @@ -406,6 +425,7 @@ def main() -> int: 'userscript-descriptions': check_userscripts_descriptions, 'userscript-shebangs': check_userscript_shebangs, 'changelog-urls': check_changelog_urls, + 'vim-modelines': check_vim_modelines, } parser = argparse.ArgumentParser() -- cgit v1.2.3-54-g00ecf