diff --git a/plugins/README.markdown b/plugins/README.markdown index a6e2b64..9b5ad14 100644 --- a/plugins/README.markdown +++ b/plugins/README.markdown @@ -5,12 +5,13 @@ * __bundler__ use Ruby's [Bundler](http://bundler.io/) automatically for some commands * __django__ - helper for Django Unit tests. Cleans the cached modules as well. * __ec2__ - exports env variables for Amazon's EC2 management -* __emoji__-clock - The current time with half hour accuracy as an emoji symbol +* __emoji-clock__ - The current time with half hour accuracy as an emoji symbol * __extract__ - Plugin to expand or extract bundled & compressed files * __fry__ - starts [fry](https://github.com/terlar/fry) Simple ruby version manager for fish * __gi__ - [gitignore.io](http://gitignore.io) cli for fish * __jump__ - A port of [Jeroen Janssens' "jump" utility](http://jeroenjanssens.com/2013/08/16/quickly-navigate-your-filesystem-from-the-command-line.html) * __localhost__ - Opens http://localhost:3000 (and other ports) in the default browser +* __mc__ - Plugin to start mc with a shell compliant (bash). * __ndenv__ - helpers for [another node.js version manager](https://github.com/riywo/ndenv) * __node__ - adds locally installed NodeJS npm binary executable modules to the path * __percol__ - browse your fish history with [percol](https://github.com/mooz/percol) diff --git a/plugins/mc/mc.fish b/plugins/mc/mc.fish new file mode 100644 index 0000000..8b7a2dd --- /dev/null +++ b/plugins/mc/mc.fish @@ -0,0 +1,8 @@ +function mc --description "Visual shell for Unix-like systems." + set -lx SHELL sh + if which bash > /dev/null + set SHELL (which bash) + end + command mc $argv +end +