summary refs log tree commit diff stats
path: root/CHANGELOG
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-10 21:01:16 +0200
committerhut <hut@lavabit.com>2011-10-10 21:12:21 +0200
commit43226a26b7df6cb58f033dc3e3a3e03f755bad72 (patch)
tree317da71205dd2ae8e5870d71b1ab56087c485db7 /CHANGELOG
parent2a5a8336bf155107d1c1c87f0655914422f09ccc (diff)
downloadranger-43226a26b7df6cb58f033dc3e3a3e03f755bad72.tar.gz
api.commands: finished merging ext.command_parser into api
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5152c73e..fc2a3dfd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,18 @@
 This log documents changes between stable versions.
 
+2011-10-10: Version 1.5.0
+* Change in commands.py syntax:
+    * Using parse(self.line) to parse the line is unnecessary now.
+      In most cases you can write self.foo() instead of parse(self.line).foo().
+      For example, parse(self.line).rest(n) is now self.rest(n).
+      However, parse(self.line).chunk(n) has been renamed to self.arg(n).
+    * parse(self.line) + X is now self.firstpart + X
+    * New special attribute "resolve_macros" which decides whether strings
+      like %f should be expanded to the name of the current file, etc.
+    * New special attribute "escape_macros_for_shell" to toggle whether or
+      not macros should be escaped, so you can use them in other commands
+      than :shell, for example :edit %f
+
 2011-10-02: Version 1.4.4
 * Added keys for chmod (like +ow for "chmod o+w", etc)
 * Added "c" flag for running files