Commit graph

3 commits

Author SHA1 Message Date
Marc Cornellà
f74c8b2941 Change parameter checks and other style fixes
This commits contains the following modifications:

- Change parameter checks from number of parameters (`$#`) to content length of
  each parameter ( `-z "$1"` ).
  A command called with an empty string in the first parameter *still* receives one
  parameter (`$# = 1`), while checking the string length will work either way.

- Change commands that may be aliased to use the builtin / non-modified
  command, using the 'command' prefix (e.g. `git` -> `command git`).

- Changed the initialization sequence of the plugin, from using a function
  to being inline in the script.
  It also uses the $0 parameter which is set when the script is sourced, and
  it contains the script filepath.
  Example: with command `source test.sh` -> in test.sh, `$0` will be 'test.sh'.

- Various style fixes, including missing space and some comments.
2014-06-10 14:26:53 +02:00
ncanceill
ee16c11d15 send tabs into space 2014-04-15 11:00:03 +02:00
ncanceill
5c97e28d56 use a shorter plugin name 2014-04-15 11:00:03 +02:00
Renamed from plugins/oh-my-zsh-bootstrap/_omz (Browse further)