diff options
-rw-r--r-- | ranger/core/actions.py (renamed from ranger/actions.py) | 0 | ||||
-rw-r--r-- | ranger/core/fm.py | 2 | ||||
-rw-r--r-- | ranger/defaults/commands.py (renamed from ranger/commands.py) | 0 | ||||
-rw-r--r-- | ranger/gui/widgets/console.py | 2 | ||||
-rw-r--r-- | ranger/help/console.py | 2 |
5 files changed, 3 insertions, 3 deletions
diff --git a/ranger/actions.py b/ranger/core/actions.py index 849a2a52..849a2a52 100644 --- a/ranger/actions.py +++ b/ranger/core/actions.py diff --git a/ranger/core/fm.py b/ranger/core/fm.py index 83426a04..74d2bb8a 100644 --- a/ranger/core/fm.py +++ b/ranger/core/fm.py @@ -17,7 +17,7 @@ from time import time from collections import deque import ranger -from ranger.actions import Actions +from ranger.core.actions import Actions from ranger.container import Bookmarks from ranger.core.runner import Runner from ranger import relpath_conf diff --git a/ranger/commands.py b/ranger/defaults/commands.py index 834e358b..834e358b 100644 --- a/ranger/commands.py +++ b/ranger/defaults/commands.py diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py index a331c66d..2ffd1a62 100644 --- a/ranger/gui/widgets/console.py +++ b/ranger/gui/widgets/console.py @@ -23,7 +23,7 @@ import curses from collections import deque from . import Widget -from ranger import commands +from ranger.defaults import commands from ranger.gui.widgets.console_mode import is_valid_mode, mode_to_class from ranger import log from ranger.ext.shell_escape import shell_quote diff --git a/ranger/help/console.py b/ranger/help/console.py index 7ba15799..3a4428f3 100644 --- a/ranger/help/console.py +++ b/ranger/help/console.py @@ -127,7 +127,7 @@ one unambiguous match, <RETURN> will be pressed for you, giving you a very fast way to browse your files. -All commands are defined in ranger/commands.py. You can refer to this +All commands are defined in ranger/defaults/commands.py. You can refer to this file for a list of commands. Implementing new commands should be intuitive: Create a new class, a subclass of Command, and define the execute method is usually enough. For parsing command input, the command parser in |