diff options
author | hut <hut@lavabit.com> | 2009-07-18 03:21:40 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-07-18 03:21:40 +0200 |
commit | 6754416298dc908ace08e1e7016fb33f9b869048 (patch) | |
tree | 3bcbcbbd64c97c183c9a7e278ddf1e97aa02aaba | |
parent | 5b054522be861aba3d082c13c681276c32c11fa5 (diff) | |
download | ranger-6754416298dc908ace08e1e7016fb33f9b869048.tar.gz |
modified TODO and added comments
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | ranger.rb | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/TODO b/TODO index 48fb14d1..47babef8 100644 --- a/TODO +++ b/TODO @@ -13,6 +13,7 @@ Minor Bugs specifically rm with write-protected files ( ) #12 09/07/17 sync @marked with changes in on the file system if files are deleted, delete those from @marked too + ( ) #14 09/07/18 Sorting sometimes doesn't work Features @@ -45,3 +46,4 @@ Required for next Release you may have typed something after the program stopped reading this could flush the text to ranger and result in unwanted actions ( ) #11 09/07/17 specify flags at data/types.rb + ( ) #14 09/07/18 Sorting sometimes doesn't work diff --git a/ranger.rb b/ranger.rb index 64e22ceb..50ff8ebf 100755 --- a/ranger.rb +++ b/ranger.rb @@ -4,6 +4,9 @@ version = '0.2.4' require 'pathname' $: << MYDIR = File.dirname(Pathname(__FILE__).realpath) +## this switches on some features which may cause harm, +## mainly by leaving this program running after you quit it from +## your window manager, ie. clicking on the X or pressing ALT+F4 EVIL = false if ARGV.size > 0 |