0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00

[config] Changed in more places ~/.elinks -> ~/.config/elinks

This commit is contained in:
Witold Filipczyk
2023-01-26 12:41:46 +01:00
parent 15362c8980
commit 060abde3d6
27 changed files with 45 additions and 45 deletions

View File

@@ -6,8 +6,8 @@ you should update the accompanying docstrings to reflect your changes and
then generate a new version of the file doc/python.txt (which serves as a
reference manual for the browser's Python APIs). The embedded interpreter
can use introspection to regenerate the python.txt document for you; just
copy this file into your ~/.elinks directory and add something like the
following to ~/.elinks/hooks.py:
copy this file into your ~/.config/elinks directory and add something like the
following to ~/.config/elinks/hooks.py:
import elinks_maint
elinks.bind_key('F2', elinks_maint.generate_python_txt)

View File

@@ -3,7 +3,7 @@
If ELinks is compiled with an embedded Python interpreter, it will try
to import a Python module called hooks when the browser starts up. To
use Python code from within ELinks, create a file called hooks.py in
the ~/.elinks directory, or in the system-wide configuration directory
the ~/.config/elinks directory, or in the system-wide configuration directory
(defined when ELinks was compiled), or in the standard Python search path.
An example hooks.py file can be found in the contrib/python directory of
the ELinks source distribution.
@@ -176,7 +176,7 @@ class simple_console:
elinks.bind_key("F5", simple_console)
# If you edit ~/.elinks/hooks.py while the browser is running, you can use
# If you edit ~/.config/elinks/hooks.py while the browser is running, you can use
# this function to make your changes take effect immediately (without having
# to restart ELinks).
#
@@ -227,7 +227,7 @@ class feedreader:
"""Constructor."""
if elinks.home is None:
raise elinks.error("Cannot identify unread entries without "
"a ~/.elinks configuration directory.")
"a ~/.config/elinks configuration directory.")
self._results = {}
self._feeds = feeds
for feed in feeds: