summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/core/actions.py (renamed from ranger/actions.py)0
-rw-r--r--ranger/core/fm.py2
-rw-r--r--ranger/defaults/commands.py (renamed from ranger/commands.py)0
-rw-r--r--ranger/gui/widgets/console.py2
-rw-r--r--ranger/help/console.py2
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
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290