Gil Forsyth
60f1d7ad35
Add news entry
2017-09-27 19:16:14 -04:00
Morten Enemark Lund
876740b535
Fixed escape_windows_cmd_string
not handling ^ correctly
2017-08-01 21:43:46 +02:00
Jamie Bliss
5a121656cf
Add news item
2017-07-25 14:50:50 -04:00
Gil Forsyth
27ffb8d3d8
Merge pull request #2449 from xonsh/fstr
...
F-strings
2017-07-24 16:33:56 -04:00
Morten Enemark Lund
bb130c11fc
Merge pull request #2452 from xonsh/asic
...
autosuggest in completions
2017-07-22 23:22:02 +02:00
Morten Enemark Lund
983b3205f1
Merge pull request #2451 from xonsh/epadd
...
EnvPath __add__() and __radd__() methods
2017-07-22 23:15:17 +02:00
Anthony Scopatz
5b78718987
autosuggest in completions
2017-07-22 16:57:03 -04:00
Anthony Scopatz
1df6b22203
EnvPath __add__() and __radd__() methods
2017-07-22 16:31:16 -04:00
Anthony Scopatz
b06eb4df73
source warnings
2017-07-22 16:01:07 -04:00
Anthony Scopatz
936f738516
f-string tests working
2017-07-22 15:35:38 -04:00
Morten Enemark Lund
b54a320ac0
Merge pull request #2439 from xonsh/barestarz
...
x, y, *z unpacking
2017-07-16 23:16:31 +02:00
Morten Enemark Lund
075b6038da
Merge pull request #2441 from xonsh/tq
...
fixed triple quote issue when open triple quotes are on the last line
2017-07-16 23:09:04 +02:00
Anthony Scopatz
078c44703c
fixed triple quote issue when open triple quotes are on the last line
2017-07-16 15:34:20 -05:00
Anthony Scopatz
1b45240fe9
more
2017-07-16 14:19:14 -05:00
Anthony Scopatz
38b852be13
Merge pull request #2438 from jb-leger/ipython_threadable
...
Ipython threadable
2017-07-16 12:11:03 -05:00
Jean-Benoist Leger
98f4a9f057
News item for ipython unthreadable.
2017-07-16 18:02:25 +02:00
Anthony Scopatz
4df37c0d73
fixed EOF in multi-line statement line number error
2017-07-15 17:51:21 -05:00
Gil Forsyth
cee3a71650
Merge pull request #2408 from nathan-hoad/alias-command
...
Implement an alias alias, matching what sh's alias does.
2017-07-09 15:50:31 -04:00
Jamie Bliss
2bb9b87971
Add news item
2017-07-09 13:46:44 -04:00
Nathan Hoad
b05a5d4bf5
Implement an alias alias, matching what sh's alias does.
2017-07-08 15:35:21 +10:00
Konstantin Molchanov
769e2012e1
Fix news item formatting.
2017-07-06 18:14:22 +04:00
Konstantin Molchanov
d38ff4db8d
Add .rst extension to the news item.
2017-07-06 18:08:56 +04:00
Konstantin Molchanov
662f1ecbab
Add news item for the branch colorization fix.
2017-07-06 18:07:55 +04:00
Jamie Bliss
f1efed3c79
Add news item
2017-06-30 10:37:25 -04:00
Konstantinos Tsakiltzidis
26b0340d70
Merge pull request #2412 from rossnomann/feature/issue-448-add-append_if_no_newline-var
...
Add $APPEND_IF_NO_NEWLINE environment variable
2017-06-29 23:44:52 +03:00
Ross Nomann
a9967c0f5d
Add $XONSH_APPEND_NEWLINE environment variable
2017-06-27 09:10:36 +03:00
Anthony Scopatz
9036fa666f
pass env into git branch detection
2017-06-24 14:16:41 -04:00
Anthony Scopatz
7c66acbf51
Merge pull request #2407 from nh2/issue-2403-xontrib-whole_word_jumping
...
Add whole_word_jumping xontrib. Implements #2403
2017-06-21 08:27:50 -07:00
Anthony Scopatz
476ab1ba44
Merge pull request #2402 from nh2/fix-gistatus-for-detached-head-no-tags
...
gistatus: Fix hash not being shown when in detaced HEAD and there are…
2017-06-19 16:03:28 -07:00
Niklas Hambüchen
266e8f39ec
gistatus: Fix hash not being shown when in detaced HEAD and there are no tags.
...
The `git describe --exact-match` used until fails with
fatal: No names found, cannot describe anything.
if there are no tags at all in the repository.
In that case, it exits with exit code 128, and thus the
control flow was aborted, and the fallback `git rev-parse`
was not executed.
As a workaround, `git describe --always` can be used,
which achieves the intended result without increasing the
number of `git` invocations.
See also:
https://stackoverflow.com/questions/4916492/git-describe-fails-with-fatal-no-names-found-cannot-describe-anything
2017-06-19 23:05:10 +02:00
Niklas Hambüchen
5ef4981ecf
gistatus: Don't SIGKILL git to avoid leftover .git/index.lock.
...
Instead, ask it nicely to terminate using SIGTERM.
2017-06-19 23:01:41 +02:00
Niklas Hambüchen
c3b13d10a9
Add whole_word_jumping xontrib. Implements #2403
2017-06-19 21:18:18 +02:00
Jamie Bliss
f05c4d86b8
Merge pull request #2398 from Jitsusama/spelling_fixes
...
Spelling Fixes
2017-06-16 11:12:05 -04:00
Joel Gerber
c33abf0ebf
Mark make_pallete() as deprecated
...
Using the new deprecated() decorator, mark make_pallete() as
deprecated in version 0.5.10 and removed in version 0.6.0.
2017-06-10 10:13:07 -04:00
Joel Gerber
0b94c3ceec
raise AssertionError on deprecated when removed_in exceeded
...
As there was some worry raised over whether people would remember
to remove a deprecated function once the removed_in version had been
reached, I've decided to add functionality that will force the
issue. When a @deprecated function is tagged with a removed_in
release that is greater than or equal to the current release, the
@deprecated decorator will raise an AssertionError, which will
hopefully break CI/CD and force the function to be removed.
2017-06-10 09:57:49 -04:00
Gil Forsyth
132fbcf6a5
version bump to 0.5.12
2017-06-10 09:05:15 -04:00
Gil Forsyth
788df00700
add news item
2017-06-10 09:01:40 -04:00
laerus
33642bb875
version bump to 0.5.11
2017-06-10 14:36:32 +03:00
Joel Gerber
b1d436332d
CHANGELOG entries
...
Include CHANGELOG entries for the changes made in spelling_fixes.rst.
2017-06-07 12:21:13 -04:00
Konstantinos Tsakiltzidis
daa909fe13
Merge pull request #2392 from nathan-hoad/xonfig-output
...
Don't show the repr of the LazyBool for whether or not xonsh is running on Linux.
2017-05-30 08:47:06 +03:00
Nathan Hoad
54747d3676
Don't show the repr of the LazyBool for whether or not xonsh is running on Linux.
2017-05-30 13:57:02 +10:00
Gil Forsyth
adcb4c685f
Use github3.py to do github release in release.xsh
2017-05-29 16:02:50 -04:00
laerus
174a7210ef
version bump to 0.5.10
2017-05-25 23:47:50 +03:00
Shahin
a238f8f6ed
Fix CI fail
2017-05-20 09:24:21 +04:30
Shahin
5527a8b84d
Add news entry and update installation package installation direction to use xip
2017-05-18 21:42:22 +04:30
Konstantinos Tsakiltzidis
18873742df
Merge pull request #2359 from xonsh/custom_rc
...
fix `--rc` option for xonsh startup
2017-04-22 02:32:21 +03:00
Gil Forsyth
b77bc1d3f3
add news entry
2017-04-21 15:28:59 -04:00
Gil Forsyth
ce3f87dba0
fix --rc
option for xonsh startup
2017-04-21 09:14:21 -04:00
Gil Forsyth
329db7ac5e
add xclip and repo to threadable predictors
...
To address issues #2355 and #2348
2017-04-17 14:21:55 -04:00
Jamie Bliss
a891b21ab3
Merge pull request #2308 from xonsh/linecont
...
Line continuations not always working on Win
2017-03-29 11:54:33 -04:00