1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00
Commit Graph

116 Commits

Author SHA1 Message Date
Vladimir Iakovlev
bb6b9a638c #124 Add note that brew package isn't offical 2015-04-25 02:11:07 +02:00
Vladimir Iakovlev
1e28671934 Revert "Fixing fish shell example in README.md" 2015-04-24 18:24:46 +02:00
Nils Winkler
d12a8bcdd8 Added cd_mkdir rule
This fixes #50 and #98.

```bash
$ cd foo/bar/baz
cd: foo: No such file or directory
$ fuck
mkdir -p foo/bar/baz && cd foo/bar/baz
```

Added matchers for both Bash and sh error messages. Depending on your
default shell, the messages might be slightly different.
2015-04-24 08:52:39 +02:00
Joseph Henrich
e21befbcc4 add ls_lah to readme 2015-04-23 20:33:38 -04:00
Jonathan Arnett
1fa7827f1a Fixing fish shell example in README.md
For me, `$history[1]` is the currently running command, so for the last one you want `$history[2]`
2015-04-23 18:35:18 -04:00
Nils Winkler
f1cce413b3 Added rule for fixing Alt+Space character
Happens on the Mac a lot when typing a pipe character (Alt+7), and
keeping the Alt key pressed down for a bit too long, so instead of
Space, you're typing Alt+Space. This rule replaces the Alt+Space with a
simple Space character.

$ ps -ef | grep foo
-bash:  grep: command not found
$ fuck
ps -ef | grep foo
2015-04-23 15:19:30 +02:00
Vladimir Iakovlev
ee2b208adf Merge pull request #112 from nwinkler/eval-alias
Using eval for Bash alias
2015-04-23 15:06:23 +02:00
Vladimir Iakovlev
a20bf6fa23 Merge pull request #110 from kimtree/support-brew
Support brew unknown command
2015-04-23 15:04:18 +02:00
Vladimir Iakovlev
f5e9124327 Merge pull request #107 from kimtree/support-pip
Add a support for pip unknown commands
2015-04-23 15:02:56 +02:00
Nils Winkler
380827d1d9 Using eval for Bash alias
This fixes #108.
2015-04-23 11:26:19 +02:00
Namwoo Kim
9611264210 Update README.md 2015-04-23 17:06:36 +09:00
Namwoo Kim
bb42780ca5 Update README.md and remove whitespaces 2015-04-23 16:05:02 +09:00
Brobin
776ff4e3db updated readme for sl_ls 2015-04-22 20:45:12 -05:00
nvbn
2e652112ff Merge branch 'master' of github.com:nvbn/thefuck 2015-04-22 23:36:43 +02:00
Vladimir Iakovlev
12eab10028 Update README.md 2015-04-22 23:08:10 +02:00
Scott Abernethy
ca67080bd9 Brew installation note in README 2015-04-23 09:00:18 +12:00
nvbn
54c408a6b5 Rename DEFAULT to DEFAULT_RULES 2015-04-22 22:37:11 +02:00
nvbn
69a9516477 Add ability to change settings via environment variables 2015-04-22 20:18:53 +02:00
nvbn
b4b599df80 Update readme 2015-04-22 16:52:09 +02:00
nvbn
fa4e4522b7 #43 Add rm_root as disabled by default rule 2015-04-22 16:08:54 +02:00
nvbn
5d424dad88 Use colorama for colored output 2015-04-22 06:03:06 +02:00
Matthew Field
3f21d5fc3f Fix spelling mistake 2015-04-21 08:47:14 -06:00
Gen2
8e18ff6eab Fix broken settings link in README 2015-04-21 13:46:38 +01:00
nvbn
e3edea05ed #24 Make no_command crossplatform 2015-04-21 06:55:47 +02:00
nvbn
e7d5d93056 #68 Add rule for switching layout 2015-04-21 06:26:15 +02:00
nvbn
dd01303663 Update list of rules in readme 2015-04-21 05:34:34 +02:00
nvbn
e822fade4c #10 Add require_confirmation option 2015-04-21 05:30:15 +02:00
Vladimir Iakovlev
d86bf8da40 Merge pull request #60 from pcmitsis/patch-1
Update Readme to contain a link to the license
2015-04-20 18:50:09 +02:00
Markus S.
a81d9af621 tweet, not twit 2015-04-20 18:19:34 +02:00
Panagiotis Mitsis
0b0ad0558a Update Readme to contain a link to the license
A small reference to the license from the readme file.
2015-04-20 16:32:50 +02:00
nvbn
aca04c2b07 Merge branch 'suvjunmd-master'
Conflicts:
	README.md
2015-04-20 15:33:00 +02:00
Vladimir Iakovlev
0e84f33ae0 Merge pull request #54 from olysyuk/patch-1
Update README.md
2015-04-20 15:29:32 +02:00
Dmitri Suvorov
219534675a Fix typos 2015-04-20 16:03:18 +03:00
olysyuk
4f135728c5 Update README.md
OSX has a different bash file
http://stackoverflow.com/questions/8967843/how-do-i-create-a-bash-alias
2015-04-20 14:12:31 +03:00
Simon Hartcher
9753e24b23 Add Powershell fuck command to README
Allows usage of fuck command in Windows Powershell
2015-04-20 15:11:29 +10:00
Vladimir Iakovlev
ef20a68d56 Merge pull request #45 from MarekAG/patch-1
Added requirements and update command
2015-04-19 22:37:15 +02:00
Vladimir Iakovlev
62bbb7021a Merge pull request #40 from rstacruz/patch-1
Readme: separate the examples to make them easier to read
2015-04-19 15:08:30 +02:00
Marek Strzała
38d040f5b7 Added requirements and update command
some of these can be non-obvious for not advanced users
2015-04-19 12:57:59 +02:00
Rico Sta. Cruz
98f287dad5 Readme: document cd_parent 2015-04-19 10:34:43 +08:00
Rico Sta. Cruz
d4d1de7992 Readme: separate the examples to make them easier to read 2015-04-19 10:31:43 +08:00
Vladimir Iakovlev
a8e75aeced Fix #37 2015-04-18 23:47:47 +02:00
nvbn
c2d315a6f6 Update readme 2015-04-18 23:22:04 +02:00
nvbn
0f7677d36c Merge branch 'master' of github.com:nvbn/thefuck 2015-04-18 23:19:59 +02:00
nvbn
8b2ba5762c Add support of lein "is not task" 2015-04-18 23:19:34 +02:00
Vladimir Iakovlev
0f5fef4fbe Update README.md 2015-04-18 22:58:53 +02:00
nvbn
3440582494 Merge branch 'master' of github.com:nvbn/thefuck 2015-04-18 22:50:42 +02:00
nvbn
e745f3d4a9 #21 Add timeout for getting previous command output 2015-04-18 22:50:18 +02:00
Vladimir Iakovlev
b1df7dca62 Update README.md 2015-04-18 22:06:26 +02:00
Viktor Stanchev
566317afd5 fix fish function, close #29 2015-04-18 15:27:57 -04:00
Vladimir Iakovlev
0049039427 Update README.md 2015-04-18 21:21:08 +02:00
Vladimir Iakovlev
f1ed8ada2b Merge pull request #14 from jtmarmon/patch-1
add alias for use on mondays
2015-04-18 21:20:00 +02:00
Vladimir Iakovlev
3920cb2a91 #19 Add easy_install installation way
close #19
2015-04-18 21:08:11 +02:00
Jason Marmon
1627c891cb add alias for use on mondays 2015-04-17 19:31:18 -04:00
Vladimir Iakovlev
bc4dc011e4 #12 Fix instruction for fish 2015-04-17 23:52:23 +02:00
Vladimir Iakovlev
2f28681b62 Merge pull request #7 from fordhurley/print-command
Print out the fucking command before running it
2015-04-17 22:30:26 +02:00
Ford Hurley
11cbb9e1f7 Print out the fucking command before running it 2015-04-17 16:07:50 -04:00
Vladimir Iakovlev
636ce7c507 Update README.md 2015-04-17 21:59:09 +02:00
nvbn
13c606afac Add info about rules and license 2015-04-17 21:51:13 +02:00
nvbn
d32177e9b3 Fix link 2015-04-17 17:03:34 +02:00
nvbn
1de9c5f77b Add information about writting yourself rules, revert no_command changes 2015-04-17 17:01:30 +02:00
nvbn
2eb777a5bb Add python 2 support 2015-04-17 16:24:03 +02:00
nvbn
e7b377a310 Add handler for "is not a git command" 2015-04-08 21:20:11 +02:00
nvbn
578bed388e Add travis-ci config 2015-04-08 19:04:54 +02:00
nvbn
8e5cc9d73a Add command not found handler 2015-04-08 19:00:03 +02:00
nvbn
9b135b67d0 Update readme 2015-04-08 18:20:38 +02:00
nvbn
71f1f4224b Initial commit 2015-04-08 18:15:49 +02:00