diff options
author | hut <hut@lepus.uberspace.de> | 2014-12-10 23:37:15 +0100 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2014-12-10 23:37:50 +0100 |
commit | 6deb64e69643612022e11772573cac23aabb4983 (patch) | |
tree | 3fcaa7be2e14e5e87118c5857b6528f74e093d99 | |
parent | aa5459503e4f1944e9ac5987592bb8c53285efa8 (diff) | |
download | ranger-6deb64e69643612022e11772573cac23aabb4983.tar.gz |
use markdown in HACKING.md, update it, fix typos
-rw-r--r-- | HACKING.md | 74 |
1 files changed, 46 insertions, 28 deletions
diff --git a/HACKING.md b/HACKING.md index 68a1a942..79f59b3f 100644 --- a/HACKING.md +++ b/HACKING.md @@ -1,5 +1,5 @@ -Guidelines on Code Modification -=============================== +Guidelines for Code Modification +================================ Coding Style ------------ @@ -14,12 +14,20 @@ Coding Style Patches ------- -Send patches, created with "git format-patch", to the email adress +Send patches, created with "git format-patch", to the email address - hut@lepus.uberspace.de + hut@hut.pm -If you plan to do major changes, or many changes over time, I encourage -you to create a fork on GitHub, Gitorious or any other site. +or open a pull request on GitHub. + + +Version Numbering +----------------- + +Three numbers, A.B.C, with +* A changes on a rewrite +* B changes when major configuration incompatibilities occur +* C changes with each release Starting Points @@ -36,39 +44,49 @@ ranger/gui/ui.py Common Changes +============== + +Adding options -------------- -* Change which files are previewed in the auto preview: -In ranger/container/file.py -the constant PREVIEW_BLACKLIST +* Add a default value in rc.conf, along with a comment that describes the option. +* Add the option to the ALLOWED_SETTINGS dictionary in the file + ranger/container/settings.py. Make sure to sort in the new entry + alphabetically. +* Add an entry in the man page by editing doc/ranger.pod, then rebuild the man + page by running "make man" in the ranger root directory + +The setting is now accessible with self.settings.my_option, assuming self is a +subclass of ranger.core.shared.SettingsAware. -* Adding options: -In ranger/config/rc.conf -add the default value, like: my_option = True -In ranger/container/settings.py -add the name of your option to the constant ALLOWED_SETTINGS -The setting is now accessible at self.settings.my_option, -assuming <self> is a "SettingsAware" object. +Adding colorschemes +------------------- -* Adding colorschemes: -Copy ranger/colorschemes/default.py to ranger/colorschemes/myscheme.py -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/config/rc.conf (or ~/.config/ranger/rc.conf), add the line: +* Copy ranger/colorschemes/default.py to ranger/colorschemes/myscheme.py + and modify it according to your needs. Alternatively, create a subclass of + ranger.colorschemes.default.Default and override the "use" method, as it is + done in the "Jungle" colorscheme. + +* Add this line to your ~/.config/ranger/rc.conf: set colorscheme myscheme -* Change the file type => application associations: + +Change the file type => application associations +------------------------------------------------ + Edit the configuration file ~/.config/ranger/rifle.conf. The default one can be obtained by running "ranger --copy-config rifle". -* Change the file extension => mime type associations: -Modify ranger/data/mime.types +Change the file extension => mime type associations +--------------------------------------------------- -Version Numbering ------------------ +Modify ranger/data/mime.types. You may also add your own entries to ~/.mime.types + + +Change which files are previewed in the auto preview +---------------------------------------------------- -Three numbers; The first changes on a rewrite, the second changes when major -configuration incompatibilities occur and the third changes with each release. +In ranger/container/file.py, change the constant PREVIEW_BLACKLIST |