From 1f124acd4a650a0f7ecb72c3abdd675c0c04e353 Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 15 Jul 2015 00:06:02 +0200 Subject: rc.conf: added pP/pO keys for FIFO-queued copying, fixes #345 --- doc/ranger.1 | 8 ++++++-- doc/ranger.pod | 5 +++++ 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/ranger.1 b/doc/ranger.1 index 42eca7e6..ea720903 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) +.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.29) .\" .\" Standard preamble: .\" ======================================================================== @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RANGER 1" -.TH RANGER 1 "ranger-1.7.1" "05/04/2015" "ranger manual" +.TH RANGER 1 "ranger-1.7.1" "07/15/2015" "ranger manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -497,6 +497,10 @@ modern \s-1GUI\s0 programs. .IP "po" 14 .IX Item "po" Paste the copied/cut files, overwriting existing files. +.IP "pP, pO" 14 +.IX Item "pP, pO" +Like pp and po, but queues the operation so that it will be executed \fIafter\fR +any other operations. Reminder: type \f(CW\*(C`w\*(C'\fR to open the task window. .IP "pl, pL" 14 .IX Item "pl, pL" Create symlinks (absolute or relative) to the copied files diff --git a/doc/ranger.pod b/doc/ranger.pod index ab84de2c..b68595a9 100644 --- a/doc/ranger.pod +++ b/doc/ranger.pod @@ -418,6 +418,11 @@ modern GUI programs. Paste the copied/cut files, overwriting existing files. +=item pP, pO + +Like pp and po, but queues the operation so that it will be executed I +any other operations. Reminder: type C to open the task window. + =item pl, pL Create symlinks (absolute or relative) to the copied files -- cgit 1.4.1-2-gfad0 From c75bc573002843a28a3d737a8b78b0e84a6b20d7 Mon Sep 17 00:00:00 2001 From: hut Date: Sun, 20 Sep 2015 04:46:20 +0200 Subject: doc/tools/print_keys.py: print mouse events too --- doc/tools/print_keys.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/tools/print_keys.py b/doc/tools/print_keys.py index 17d2513b..fecd6fb9 100755 --- a/doc/tools/print_keys.py +++ b/doc/tools/print_keys.py @@ -9,6 +9,12 @@ sep = '; ' @wrapper def main(w): + mousemask(ALL_MOUSE_EVENTS) + mouseinterval(0) while True: - w.addstr(str(w.getch()) + sep) + ch = w.getch() + if ch == KEY_MOUSE: + w.addstr(repr(getmouse()) + sep) + else: + w.addstr(str(ch) + sep) -- cgit 1.4.1-2-gfad0 From a0b6b9e0b155631866fbb7681dac2cdb577db415 Mon Sep 17 00:00:00 2001 From: hut Date: Sun, 4 Oct 2015 01:40:34 +0200 Subject: Fixed that rare bug with the fireballs and explosions --- CHANGELOG | 14 ++++++++++++++ README.md | 2 +- doc/ranger.1 | 2 +- doc/rifle.1 | 4 ++-- ranger/__init__.py | 4 ++-- ranger/ext/rifle.py | 2 +- 6 files changed, 21 insertions(+), 7 deletions(-) (limited to 'doc') diff --git a/CHANGELOG b/CHANGELOG index 28bcfda6..207e311f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,19 @@ This log documents changes between stable versions. +2015-10-04: version 1.7.2 +* Fixed file name arguments passed to "sxiv" and "feh" when using ":flat" +* Fixed removal of empty directories when using ":rename" +* Fixed free disk space display on Mac OS X +* Fixed `examples/vim_file_chooser` to work with gvim too +* Fixed some other rare crashes and bugs +* Fixed downward mouse wheel scrolling +* Fixed warning about regex splits being drawin in title bar since python3.5 +* Really fixed "S" key binding not working when SHELL=fish +* Improved doc/cheatsheet.svg +* Added some entries to rifle.conf +* Added key bindings pO and pP which work like po and pp but queue the operation + in a first-in-first-out order. + 2015-05-04: version 1.7.1 * Added doc/cheatsheet.svg * Added examples/rc_emacs.conf, a config file adding emacs-like key bindings diff --git a/README.md b/README.md index 2ee3bcd6..f0d3ca25 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ranger v.1.7.1 +ranger v.1.7.2 ============== ranger is a console file manager with VI key bindings. It provides a minimalistic and nice curses interface with a view on the directory hierarchy. diff --git a/doc/ranger.1 b/doc/ranger.1 index ea720903..f426d5c6 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RANGER 1" -.TH RANGER 1 "ranger-1.7.1" "07/15/2015" "ranger manual" +.TH RANGER 1 "ranger-1.7.2" "10/04/2015" "ranger manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/doc/rifle.1 b/doc/rifle.1 index 3bb74dd8..32501ee0 100644 --- a/doc/rifle.1 +++ b/doc/rifle.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) +.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.29) .\" .\" Standard preamble: .\" ======================================================================== @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RIFLE 1" -.TH RIFLE 1 "rifle-1.7.1" "05/04/2015" "rifle manual" +.TH RIFLE 1 "rifle-1.7.2" "10/04/2015" "rifle manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/ranger/__init__.py b/ranger/__init__.py index 8a1e7459..2d3f04d6 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -14,7 +14,7 @@ import tempfile # Information __license__ = 'GPL3' -__version__ = '1.7.1' +__version__ = '1.7.2' __author__ = __maintainer__ = 'Roman Zimbelmann' __email__ = 'hut@hut.pm' @@ -28,7 +28,7 @@ DEFAULT_PAGER = 'less' LOGFILE = tempfile.gettempdir()+'/ranger_errorlog' CACHEDIR = os.path.expanduser("~/.cache/ranger") USAGE = '%prog [options] [path]' -VERSION = 'ranger-master %s\n\nPython %s' % (__version__, sys.version) +VERSION = 'ranger-stable %s\n\nPython %s' % (__version__, sys.version) # If the environment variable XDG_CONFIG_HOME is non-empty, CONFDIR is ignored # and the configuration directory will be $XDG_CONFIG_HOME/ranger instead. diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py index 4f1ef1b9..504851b1 100755 --- a/ranger/ext/rifle.py +++ b/ranger/ext/rifle.py @@ -19,7 +19,7 @@ import re from subprocess import Popen, PIPE import sys -__version__ = 'rifle 1.7.1' +__version__ = 'rifle 1.7.2' # Options and constants that a user might want to change: DEFAULT_PAGER = 'less' -- cgit 1.4.1-2-gfad0 'n121' href='#n121'>121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 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