about summary refs log tree commit diff stats
path: root/043space.cc
Commit message (Expand)AuthorAgeFilesLines
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-10/+10
* 2728 - don't ignore /space: while checking typesKartik K. Agaram2016-03-041-0/+15
* 2718 - stop crashing on unknown spaceKartik K. Agaram2016-02-261-0/+1
* 2712Kartik K. Agaram2016-02-261-8/+8
* 2707Kartik K. Agaram2016-02-251-4/+1
* 2703Kartik K. Agaram2016-02-251-5/+5
* 2701 - turn some warnings into errorsKartik K. Agaram2016-02-251-1/+1
* 2680Kartik K. Agaram2016-02-201-1/+1
* 2685Kartik K. Agaram2016-02-191-2/+2
* 2645Kartik K. Agaram2016-02-101-1/+1
* 2614Kartik K. Agaram2016-01-291-2/+2
* 2610 - warn when recipes don't use default-spaceKartik K. Agaram2016-01-271-0/+44
* 2581 - make space for the refcount in address:sharedKartik K. Agaram2016-01-201-12/+17
* 2577Kartik K. Agaram2016-01-201-49/+50
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-13/+15
* 2571Kartik K. Agaram2016-01-191-0/+237
* 1768Kartik K. Agaram2015-07-131-146/+0
* 1702 - experiment: start using 'ordinal' in namesKartik K. Agaram2015-07-041-2/+2
* 1641Kartik K. Agaram2015-06-241-1/+2
* 1476 - fake screens support colorKartik K. Agaram2015-05-261-1/+1
* 1444Kartik K. Agaram2015-05-231-2/+2
* 1434 - support all unicode spacesKartik K. Agaram2015-05-231-0/+15
* 1407Kartik K. Agaram2015-05-191-4/+4
* 1391 - avoid unsigned integersKartik K. Agaram2015-05-171-5/+5
* 1364 - trace call-stack when switching routinesKartik K. Agaram2015-05-131-4/+4
* 1363 - rename 'integer' to 'number'Kartik K. Agaram2015-05-131-17/+17
* 1360 - store doubles in memoryKartik K. Agaram2015-05-121-3/+3
* 1357 - temporarily revert floating-point supportKartik K. Agaram2015-05-121-4/+4
* 1356 - snapshot #2: floating point supportKartik K. Agaram2015-05-121-4/+4
* 1298 - better ingredient/product handlingKartik K. Agaram2015-05-071-2/+2
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+130
file manager in a high level language * A quick way to switch directories and browse the file system * Keep it small but useful, do one thing and do it well * Console based, with smooth integration into the unix shell Features -------- * Multi-column display (Miller Columns) * Preview of the selected file/directory * Common file operations (create/chmod/copy/delete/...) * VIM-like console and hotkeys * Automatically determine file types and run them with correct programs * Change the directory of your shell after exiting ranger * Tabs, Bookmarks, Mouse support Dependencies ------------ * A *nix-like operating system * Python 2.6 or Python 3.1 with the curses module Optional: * The "file" program * A pager ("less" by default) * The python module "chardet", in case of encoding detection problems For scope.sh: (enhanced file previews) * img2txt (from caca-utils) for previewing images * highlight for syntax highlighting of code * atool for previews of archives * lynx or elinks for previews of html pages Getting Started --------------- Ranger can be started without installing. Just run the executable (in a terminal.) The switch "--clean" will prevent it from creating or accessing configuration files. Follow the instructions in the INSTALL file for installing ranger. After starting ranger, you should see 4 columns. The third one is the main column, the directory where you're currently at. To the left you see the parent directories and to the right there's a preview of the object you're pointing at. Now use the Arrow Keys to navigate, Enter to open a file or type Q to quit. To customize ranger, copy the files from ranger/defaults/ to ~/.config/ranger/ and modify them according to your wishes. Combine Ranger With Other Applications -------------------------------------- 1. bash: Add this to your ~/.bashrc to use ranger as a directory switcher: function ranger-cd { ranger --choosedir=/tmp/chosen if [ -f /tmp/chosen -a "$(cat /tmp/chosen)" != "$(pwd | tr -d "\n")" ]; then cd "$(cat /tmp/chosen)" fi rm -f /tmp/chosen } bind '"\C-o":"ranger-cd\C-m"' Now when you run ranger-cd, browse and quit, the directory of the bash process you started ranger in will change to the last directroy in ranger. To change back to the previous directory, you can type: cd - Also, the line with "bind" will map the key <CTRL-O> to start ranger. 2. vim: Add this function to your ~/.vimrc: fun Ranger() silent !ranger --choosefile=/tmp/chosen if filereadable('/tmp/chosen') exec 'edit ' . system('cat /tmp/chosen') call system('rm /tmp/chosen') endif redraw! endfun map <leader>r :call Ranger() This starts ranger when you type <leader>r (usually \r) and if you open a file in ranger it will be opened in the original vim process. Troubleshooting, Getting Help ----------------------------- If you encounter an error, try running ranger with --debug. This will sometimes display more detailed information about the error. Also, try deactivating optimization: PYTHONOPTIMIZE="" ranger --debug Report bugs on savannah: (please include as much information as possible) http://savannah.nongnu.org/bugs/?func=additem&group=ranger Ask questions on the mailing list: http://lists.nongnu.org/mailman/listinfo/ranger-users Further Reading --------------- Check the man page for information on common features and hotkeys. The most detailed manual is accessible by pressing "?" from inside ranger. It is also available at ranger/help/, contained in the *.py files. The file ranger/defaults/keys.py contains all key combinations, so that's another place you may want to check out.