summary refs log tree commit diff stats
path: root/HACKING
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING15
1 files changed, 8 insertions, 7 deletions
diff --git a/HACKING b/HACKING
index 84fb7539..85f44ed6 100644
--- a/HACKING
+++ b/HACKING
@@ -17,10 +17,10 @@ Patches
 
 Send patches, created with "git format-patch", to the email adress
 
-    hut@lavabit.com
+    romanz@lavabit.com
 
 If you plan to do major changes, or many changes over time, I encourage
-you to create a fork on GitHub or Gitorious.
+you to create a fork on GitHub, Gitorious or any other site.
 
 
 Common Changes
@@ -40,16 +40,17 @@ The setting is now accessible at self.settings.my_option,
 assuming <self> is a "SettingsAware" object.
 
 * Change commands:
-ranger/commands.py
+ranger/defaults/commands.py
 
 * Create aliases for commands:
-In ranger/commands.py
+In ranger/defaults/commands.py
 at the bottom, write something like: alias(exit=quit)
 
 * Adding colorschemes:
 Copy ranger/colorschemes/default.py to ranger/colorschemes/myscheme.py
-and modify it according to your needs.
-In ranger/defaults/options.py, change
+and modify it according to your needs.  Alternatively, mimic the jungle
+colorscheme.  It subclasses the default scheme and just modifies a few things.
+In ranger/defaults/options.py (or ~/.ranger/options.py), change
     colorscheme = colorschemes.default
 to: colorscheme = colorschemes.myscheme
 
@@ -59,7 +60,7 @@ change the hidden_filter regular expression.
 
 * Change the key map:
 Modify ranger/defaults/keys.py.  This should be self-explanatory.
-Check out ranger/actions.py for the most common actions, of course
+Check out ranger/core/actions.py for the most common actions, of course
 you can also use your own functions.
 
 * Change the file type => application associations:
ef='#n143'>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