:tabnew- new blank tab:tabedit [file]- open file in tab
gt(:tabn) - next tab
| Note for newcomers: | |
| In the shortcuts below, "C" stands for CTRL and "A" stands for "ALT". This is a convention | |
| used in the Midnight Commander documentation and was kept here. | |
| Main View | |
| --------------------------------------------------------------- | |
| - File/directory operations | |
| F3 View file | |
| Shift + F3 View raw file (disregard extension) | |
| F5 Copy selected files |
| #!/usr/bin/env python | |
| """ | |
| usage: python -m sha1 <filename> | |
| """ | |
| import sys | |
| import hashlib | |
| # --- these fields are required for packaging | |
| __version__ = '1.0' | |
| __author__ = 'anatoly techtonik <[email protected]>' |
| #!/bin/bash | |
| # dochroot.sh: set up and enter chroot environment for a Gentoo install | |
| # | |
| # Copyright 2019 Stephen Cavilia <[email protected]> | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. |