Commit graph

1647 commits

Author SHA1 Message Date
Anthony Scopatz
e217abd306
Merge pull request #3346 from xonsh/superhelp
Fix superhelp
2019-10-07 16:20:13 -04:00
Morten Enemark Lund
f15af6b7c3 Add changelog entry 2019-10-07 20:42:32 +02:00
Anthony Scopatz
232c573638 more color code fixes and robustness 2019-10-07 14:39:10 -04:00
Morten Enemark Lund
6df0281da9 Fix sphinx formatting 2019-10-07 10:37:22 +02:00
Morten Enemark Lund
845d223052 Add changelog entry 2019-10-07 10:11:50 +02:00
Anthony Scopatz
1b6d5b4f1a Updated CHANGELOG for 0.9.12 2019-10-06 12:38:48 -04:00
Anthony Scopatz
fe27543764 news 2019-10-05 16:49:19 -04:00
Morten Enemark Lund
50155c66e3
Merge pull request #3329 from xonsh/ctxvars
Context vars fix
2019-10-03 21:53:08 +02:00
Morten Enemark Lund
025834876f
Merge pull request #3330 from xonsh/percol
percol false
2019-10-03 15:12:25 +02:00
Morten Enemark Lund
41ce414df1
Merge pull request #3334 from xonsh/acreveal
color modifier fix
2019-10-03 15:11:51 +02:00
Anthony Scopatz
c9b2d59bf4
Update acreveal.rst 2019-10-03 08:54:00 -04:00
Morten Enemark Lund
b219df826a
Add content to changelog entry 2019-10-03 10:43:05 +02:00
Allan Crooks
0829d4b49f
Create fix-ansi-colors.rst 2019-10-02 22:12:48 +01:00
Anthony Scopatz
5e7df84548 color modifier fix 2019-10-02 16:37:16 -04:00
Anthony Scopatz
556db6d124 jedi error fix 2019-10-01 20:59:47 -04:00
Anthony Scopatz
7952b7b21b percol false 2019-10-01 18:00:33 -04:00
Anthony Scopatz
f0177b41dd
Merge pull request #3326 from xonsh/utf8_cache
Assume xsh scripts are in UTF-8
2019-10-01 17:14:12 -04:00
Anthony Scopatz
225b768d8d
Merge pull request #3313 from micimize/bottom_bar_keypress_issue
Fix gray empty bar when updating on keypress
2019-10-01 17:12:01 -04:00
Anthony Scopatz
5afba70f1e Context vars fix 2019-10-01 16:56:27 -04:00
micimize
dc2e23b9ce
added news item 2019-10-01 09:58:31 -05:00
Caleb Hattingh
f90d002906 Add news item 2019-10-01 23:12:23 +10:00
Morten Enemark Lund
ddb7d761f0 Add changelog entry 2019-10-01 14:24:39 +02:00
Anthony Scopatz
9b23723bf0
Merge pull request #3304 from carmenbianca/posonlyargs
Python 3.8: Prevent posonlyargs error
2019-09-30 19:55:35 -04:00
Jamie Bliss
c2cb1065e7
Merge pull request #3310 from CJ-Wright/lib_itertools
Add as_iterable to itertools
2019-09-23 19:08:24 -04:00
fanosta
6a0d326afd fix tab completion of cd with $CDPATH 2019-09-17 22:58:20 +02:00
Christopher J. Wright
7bcdc1c15c news 2019-09-10 09:31:27 -04:00
Gil Forsyth
9acc111d65
Merge pull request #3277 from astronouth7303/xontrib-autovox
Add autovox xontrib
2019-09-09 16:32:55 -04:00
Morten Enemark Lund
7829074d9a
Merge pull request #3307 from xonsh/fnf_exit_1
Non-zero exit code when script path not found
2019-09-09 22:12:41 +02:00
Gil Forsyth
6e09e3c266
Non-zero exit code when script path not found 2019-09-09 14:39:36 -04:00
Carmen Bianca Bakker
67c4cf4f8e
Add news item 2019-09-05 12:36:40 +02:00
Jamie Bliss
cfd59c5a83 Single grave strikes again! 2019-08-28 14:03:17 -04:00
Jamie Bliss
1e81451ccf Add news and docs. 2019-08-28 13:37:46 -04:00
Anthony Scopatz
e35d61f2ea logical whitespace 2019-08-27 14:01:28 -04:00
Anthony Scopatz
5743558cef check_output() fiux 2019-08-27 10:21:40 -04:00
Anthony Scopatz
a280154b7b Updated CHANGELOG for 0.9.11 2019-08-25 13:26:16 -04:00
Anthony Scopatz
dd16d59d86
Merge pull request #3251 from cjrh/vox-activate-absolute-path
vox activate: use absolute path in $PATH
2019-08-25 13:21:16 -04:00
Anthony Scopatz
b251e402a7
Merge pull request #3274 from con-f-use/master
Correct completer tutorial
2019-08-25 13:19:39 -04:00
con-f-use
4b26928973
Update correct_completer_tutorial.rst 2019-08-18 14:56:50 +02:00
con-f-use
7ef79eb169
News item for completer tutorial fix 2019-08-18 14:46:51 +02:00
Gil Forsyth
e4fada56b0 Allow logical operators within aliases
This fixes #3270 and logical operators within aliases now resolve correctly.

I've added in `&&`, `||`, `and`, and `or`

```
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ aliases['echocat'] = 'echo "hi" and echo "there"'
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ echocat
hi
there
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ aliases['echocat'] = 'echo "hi" or echo "there"'
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ echocat
hi
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ aliases['echocat'] = 'echo "hi" && echo "there"'
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ echocat
hi
there
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ aliases['echocat'] = 'echo "hi" || echo "there"'
(base)   ~/githu/xonsh/xonsh logical_op_aliases $ echocat
hi
```
2019-08-16 15:17:31 -04:00
Anthony Scopatz
59a042010f Updated CHANGELOG for 0.9.10 2019-08-09 17:11:08 -04:00
Anthony Scopatz
5f30593dfe target color 2019-08-06 14:39:11 -04:00
Caleb Hattingh
b89bada694 Trying to solve the test_news failure. 2019-08-03 12:43:17 +10:00
Caleb Hattingh
287eb5a9af Fix news file to be valid *.rst 2019-08-03 12:37:23 +10:00
Caleb Hattingh
ce6a861558 Update news and AUTHORS 2019-08-03 12:32:02 +10:00
László Vaskó
cfc8764b2c command-not-found: look up in PATH instead of using hard-coded location
Motivation: command-not-found is available on a different location under
NixOS.
2019-08-02 17:45:03 +02:00
Anthony Scopatz
65fea7dda8
Merge pull request #3200 from virusbb001/3182-fix-cat-proc-file
Fix `cat` can't read pseudo files with zero size
2019-07-23 11:44:06 -04:00
Alexander Steffen
2e94e6d9ef Allow disabling individual items in gitstatus prompt
Setting $XONSH_GITSTATUS_* to an empty string lead to the number of files
still being displayed, without any way to see to which category those
belonged. It might even display "11", which could be "1 changed file" and
"1 staged file" or "11 staged files".

Changing the logic to hide the entire entry if the corresponding
$XONSH_GITSTATUS_* setting is empty allows for an easy way to disable some
of the categories.
2019-07-21 20:49:54 +02:00
Anthony Scopatz
7d20546a98
Merge pull request #3184 from 6syun9/add_ref_interval
Add $PROMPT_REFRESH_INTERVAL
2019-07-20 01:29:44 -04:00
Anthony Scopatz
83ba128f19 Updated CHANGELOG for 0.9.9 2019-07-19 18:13:20 -04:00