Kurtis Rader
46b791240a
lint: Use early exit/continue
2016-10-31 18:17:33 -07:00
Kurtis Rader
3bd24ddb17
lint: Use early exit/continue
2016-10-31 18:14:57 -07:00
Kurtis Rader
26c1430e82
lint: Use early exit/continue
2016-10-31 18:05:10 -07:00
Kurtis Rader
6c3900ff64
lint: Use early exit/continue
2016-10-31 18:05:10 -07:00
Kurtis Rader
6192e2453e
lint: Use early exit/continue
2016-10-31 18:05:09 -07:00
Kurtis Rader
eab836864e
lint: Use early exit/continue
2016-10-31 18:05:01 -07:00
Kurtis Rader
225caa2fe8
lint: Use early exit/continue
2016-10-31 18:03:03 -07:00
Kurtis Rader
4fe2a2921f
lint: Use early exit/continue
2016-10-31 18:00:59 -07:00
Kurtis Rader
7779132595
lint: Use early exit/continue
2016-10-31 17:58:41 -07:00
Kurtis Rader
ca5a4ec1d5
lint: Use early exit/continue
2016-10-31 13:29:10 -07:00
Kurtis Rader
49ed20c8cb
lint: Use early exit/continue
2016-10-31 13:29:10 -07:00
Aaron Gyes
a5f6382d77
Update changelog
2016-10-31 12:03:09 -07:00
Aaron Gyes
b2f047421d
Supress fish_title only for Terminal.app
...
VTE terminals apparently do not use the OSC sequence to compose
title components.
2016-10-31 12:00:44 -07:00
Aaron Gyes
dfe7813c02
Fix Terminal.app title
...
Defining fish_title here is too late because there will already be a
title set. Work around issue by clearing it at same time.
2016-10-31 12:00:44 -07:00
David Adam
ddbf63c46f
CHANGELOG: updates for 2.4.0
2016-10-31 22:35:36 +08:00
Fabian Homborg
c8fe0e53dd
Rework cursor detection
...
Fixes #3499 .
(cherry picked from commit 2a5ad198bf
)
2016-10-31 21:52:50 +08:00
Fabian Homborg
7bcae09674
Disable vi-cursor on xterm < 282
...
Fixes #3499 .
@zanchey: This is for integration-2.4.0.
(cherry picked from commit 7ea2dc4488
)
2016-10-31 21:52:50 +08:00
Fabian Homborg
2a5ad198bf
Rework cursor detection
...
Fixes #3499 .
2016-10-31 21:51:06 +08:00
Aaron Gyes
960cc628b2
Don't choke defining aliases with quotes
...
Fixes #3510
2016-10-31 01:37:23 -07:00
Aaron Gyes
6b41240cd2
Revert "Move PCRE2 to pcre2"
...
This reverts commit f4f9ed56ee
.
2016-10-30 21:29:48 -07:00
Aaron Gyes
6e873719fd
Fix alias doc typo
...
Fix spelling typo, and a couple small tweaks.
2016-10-30 21:25:21 -07:00
Aaron Gyes
f4f9ed56ee
Move PCRE2 to pcre2
2016-10-30 12:38:45 -07:00
David Adam
9f23f619c9
Makefile: pass correct version macro
...
Fixes display of version in documentation header. A shell-style variable
instead of a Makefile-style variable left it displayed as
ISH_BUILD_VERSION.
(cherry picked from commit 1e234f492c
)
2016-10-30 14:27:11 +08:00
David Adam
1e234f492c
Makefile: pass correct version macro
...
Fixes display of version in documentation header. A shell-style variable
instead of a Makefile-style variable left it displayed as
ISH_BUILD_VERSION.
2016-10-30 14:26:11 +08:00
Kurtis Rader
f0ab1331a5
lint: Use early exit/continue
2016-10-29 21:46:11 -07:00
Kurtis Rader
99b729eb4d
lint: Use early exit/continue
2016-10-29 21:20:29 -07:00
Kurtis Rader
9af0797334
lint: Use early exit/continue
2016-10-29 20:51:03 -07:00
Kurtis Rader
6bef7b7be9
lint: constant if expression
2016-10-29 19:01:19 -07:00
Kurtis Rader
b0b2182535
lint: missing default in switch statements
2016-10-29 18:27:51 -07:00
Aaron Gyes
fb979922b3
Update alias docs
2016-10-29 13:57:05 -07:00
Aaron Gyes
c4bd110fca
List alias-created functions on alias
sans args
...
The previous change I made here makes this not hard to do, but
kind of lame in implementation.
2016-10-28 22:31:58 -07:00
Kurtis Rader
b663b0e818
lint: redundant if statement
2016-10-28 19:15:05 -07:00
Kurtis Rader
41f1232cf9
disable oclint BitwiseOperatorInConditional warning
2016-10-28 17:52:56 -07:00
Kurtis Rader
4a2aed1f8e
lint: unnecessary else statement
2016-10-28 17:43:20 -07:00
Aaron Gyes
2d46969d3e
alias: identify as alias in description.
...
Like so:
~ $ alias foo=bar
~ $ functions foo
function foo --description 'alias foo=bar'
bar $argv;
end
2016-10-28 14:44:55 -07:00
Kurtis Rader
f382fa8e8a
lint: multiple unary operator
2016-10-27 21:21:54 -07:00
Fabian Homborg
7ea2dc4488
Disable vi-cursor on xterm < 282
...
Fixes #3499 .
@zanchey: This is for integration-2.4.0.
2016-10-27 10:16:57 +02:00
Fabian Homborg
56679d4776
Don't use open function if a command exists
...
Turns out this is also the case on Haiku.
It also eliminates a fork.
Closes #3487 .
2016-10-26 15:48:42 +02:00
Kurtis Rader
070ef6fd5b
fix regression introduced by commit 851e449
...
My earlier attempt with commit 851e449
to eliminate all the compiler
warnings about mixing signed and unsigned ints in an expression
introduced a subtle bug. This fixes that mistake.
Fixes #3488
(cherry picked from commit 075be74cc4
)
2016-10-26 18:28:49 +08:00
Kurtis Rader
075be74cc4
fix regression introduced by commit 851e449
...
My earlier attempt with commit 851e449
to eliminate all the compiler
warnings about mixing signed and unsigned ints in an expression
introduced a subtle bug. This fixes that mistake.
Fixes #3488
2016-10-25 20:56:15 -07:00
Aaron Gyes
5a8be61954
defaults completions: shorten and improve brevity
...
At 80 columns the description obscured 'find' in 'default find'.
Improve others.
(cherry picked from commit cbe2d4b5f1
)
2016-10-25 08:55:03 +08:00
Fabian Weisshaar
7fdbbe0711
add defaults (macOS) completion
...
(cherry picked from commit 7878dbc4f0
)
2016-10-25 08:55:02 +08:00
Fabian Weisshaar
8af6bb4436
add listFilesystems to diskutil completion
...
(cherry picked from commit e16f6ca2aa
)
2016-10-25 08:55:02 +08:00
Kurtis Rader
2bb52c65c2
fix bug introduced by 42458ff7
...
There was one block of code modified by commit 42458ff7
that had
convoluted, inverted, logic. In the process of collapsing nested
"if" blocks the logic was modified to avoid using "!" everywhere the
bool was tested. Unfortunately I neglected to modify two of the
conditions used to set that var to reflect the changed polarity.
2016-10-24 17:13:39 -07:00
Kurtis Rader
37d91d0c29
change name of the function
2016-10-23 15:02:14 -07:00
Kurtis Rader
8dfee7ff76
add new file to change
2016-10-23 14:56:18 -07:00
Kurtis Rader
07de13f61f
implement a fish_prompt_hostname function
...
Standardize how the host name is included in the prompts that do so.
Fixes #3480
2016-10-23 14:20:54 -07:00
Aaron Gyes
668de88e69
Supress fish_title only for Terminal.app
...
VTE terminals apparently do not use the OSC sequence to compose
title components.
2016-10-23 12:02:01 -07:00
Kurtis Rader
31432c3535
Revert "Fix lexicon_filter verbosity"
...
This reverts commit dcb39af8c0
.
It breaks building the documentation because splitting the sed invocation
in the `lexicon_filter` target from the preceding `if` block means the
`WORDBL` and `WORDBR` shell vars aren't available.
(cherry picked from commit 100a0ea549
)
2016-10-23 20:54:29 +08:00
Kurtis Rader
cdb82e45ac
lint: remove another "too few branches in switch statement"
2016-10-22 22:12:22 -07:00