ridiculousfish
c8dc306b18
Fix command section separator line lengths
2019-02-24 18:15:48 -08:00
ridiculousfish
0e936198db
Switch backticks to double backticks for rst compatibility
2019-02-24 18:15:48 -08:00
ridiculousfish
2a002a4ba1
Switch \fish sections to rst format
2019-02-24 18:15:48 -08:00
ridiculousfish
c33d1a217c
Convert \\subsection sections into rst format
2019-02-24 18:15:48 -08:00
ridiculousfish
256c2dadee
Migrate the 'synopsis' sections to .rst format
2019-02-24 18:15:48 -08:00
ridiculousfish
c213882511
Switch command docs from \section to reStructuredText
2019-02-24 18:15:48 -08:00
ridiculousfish
afd035f8cc
Copy doc_src to sphinx_doc_src and add a TOC
2019-02-24 18:15:48 -08:00
ridiculousfish
cb045d5e6a
Migrate index.rst to reStructuredText
2019-02-24 18:15:48 -08:00
ridiculousfish
c46f02e01e
Initial sphinx file import
2019-02-24 18:15:23 -08:00
ridiculousfish
0a29eb3142
reader_readline to return maybe_t<wcstring>
...
Stop returning a raw pointer.
2019-02-24 14:00:22 -08:00
ridiculousfish
47f1b026e6
Simplify reader generation count using thread_local
...
Replaces pthread_set_specific
2019-02-24 13:39:43 -08:00
ridiculousfish
4b292c777d
Clean up and clarify reader_exit()
2019-02-24 13:24:03 -08:00
ridiculousfish
144e37b8ba
Remove some empty code
2019-02-24 13:14:36 -08:00
ridiculousfish
a81bfbb805
Rename end_loop to noni_end_loop
...
This helps distinguish between the global (noni_)end_loop and the reader
specific one.
2019-02-24 12:20:20 -08:00
ridiculousfish
815e20066b
parser_t to become enable_shared_from_this
2019-02-24 12:12:24 -08:00
ridiculousfish
5134949a14
Factor color and terminal sequence outputting into outputter_t
...
Removes some static variables and simplifies the behavior of the tputs
singletone receiver.
2019-02-23 20:07:29 -08:00
ridiculousfish
9715db9434
Fix a "no return value" warning
2019-02-23 14:09:17 -08:00
ridiculousfish
130f2266d0
Remove the last of the signal blocking and checks
...
fish's signal handlers are now sufficiently innocuous that there should
be no reason to block signals (outside of temporarily, when creating a
thread and we need to manipulate the signal mask).
2019-02-23 14:07:35 -08:00
ridiculousfish
ec65ba3427
Remove signal_block_t
...
Bravely removing more signal blocks, now that our signal handling is so
simple.
2019-02-23 13:48:16 -08:00
ridiculousfish
0ff4046b8c
Remove signal blocks from terminal_return_from_job
...
There's nothing justifying having these here.
2019-02-23 13:45:26 -08:00
ridiculousfish
f1b208997c
Cleanup events
...
Prior to this fix, an "event" was used as both a predicate on which events
to match, and also as the event itself. Re-express these concepts
distinctly: an event is something that happened, an event_handler is the
predicate and name of the function to execute.
2019-02-23 13:33:12 -08:00
ridiculousfish
780b53ba73
Convert event_type_t to an enum class
2019-02-23 13:17:28 -08:00
ridiculousfish
1b8ddacfed
Reimplement signal handling event machinery
...
Prior to this fix, fish had a signal_list_t that accumulated signals.
Signals were added to an array of integers, with an overflow flag.
The event machinery would attempt to atomically "swap in" the other list.
After this fix, there is a single list of pending signal events, as an array
of atomic booleans. The signal handler sets the boolean corresponding to its
signal.
2019-02-23 13:03:33 -08:00
ridiculousfish
003998c921
Event blocks just block all events
...
In a galaxy far, far away, event_blockage_t was intended to block only cetain
events. But it always just blocked everything. Eliminate the event block
mask.
2019-02-23 13:02:07 -08:00
ridiculousfish
f015f930f1
Enhance the signal test
2019-02-23 12:41:01 -08:00
ridiculousfish
0f30f05e16
Remove EVENT_ANY_SIGNAL
...
This appeared to have been intended to allow functions to handle all signals,
but this has not been exposed and it doesn't seem useful.
2019-02-23 12:19:59 -08:00
ridiculousfish
6bddf2c83b
Add basic signal test
2019-02-23 11:57:19 -08:00
ridiculousfish
da04f757f9
Minor cleanup to process_clean_after_marking
2019-02-22 22:50:52 -08:00
Fabian Homborg
f451499aa6
completions/valgrind: Fix option typo
...
Fixes #5688 .
[ci skip]
2019-02-22 20:03:53 +01:00
Fabian Homborg
c6ec423513
completions/systemctl: Harden version comparison
...
Arch changed the version string to include the package rel, so it
looks like
systemd 241 (241.7-2-arch)
which would break our simple `string replace` and `test`.
Fixes #5689 .
[ci skip]
2019-02-22 20:00:08 +01:00
ridiculousfish
38d86acbc3
Fix s_var_dispatch_table initialization
...
It has to be declared after the variables it uses.
2019-02-20 16:33:54 -08:00
George Christou
de0b64409c
Teach autosuggestions to respect forward-bigword
...
Closes #5336
2019-02-20 16:06:38 -08:00
ridiculousfish
75e83cac29
pwd short_options to be const
2019-02-20 16:06:05 -08:00
ridiculousfish
13b2ff336d
Make var_dispatch_table const
2019-02-20 16:06:05 -08:00
Max Nordlund
44ad92ef50
Fix typo
2019-02-20 16:00:59 -08:00
ridiculousfish
e234856190
Define _REENTRANT
...
This enables thread-safe errno on Solaris and its descendants.
Fixes #5611
2019-02-20 13:58:36 -08:00
Fabian Homborg
50f6fa048e
completions/sudo: Quote ?
...
This was treated as a glob where it was still enabled, most likely removing the "-E" option from argparse,
which caused `sudo -E` to not be parsed correctly, breaking completion.
(There was no error because the glob was used with `set`)
Fixes #5675 .
[ci skip]
2019-02-20 22:30:29 +01:00
ridiculousfish
177adb6837
Revert "Define _POSIX_C_SOURCE=200809L"
...
This reverts commit 334eec94f8
.
This broke the Mac build
2019-02-20 13:28:46 -08:00
ridiculousfish
334eec94f8
Define _POSIX_C_SOURCE=200809L
...
This enables thread-safe errno on Solaris and its descendants.
Fixes #5611
2019-02-20 12:58:59 -08:00
Aaron Gyes
11a1403219
Remove extra semicolons
2019-02-19 16:50:58 -08:00
David Adam
d44308388f
cmake: use the check state stack for __nl_msg_cat_cntr checks
2019-02-19 21:35:30 +08:00
Fabian Homborg
59955391ad
completions/yarn: Allow running scripts as subcommand
...
Fixes #5674 .
[ci skip]
2019-02-19 14:24:02 +01:00
Aaron Gyes
6aa2f29901
Don't increase the width for variation selector 15.
...
See discussion in #5668 and #5583
2019-02-19 04:27:17 -08:00
Fabian Homborg
8a93c7d0ea
abbr: Add "-q"/"--query" option
...
[ci skip]
2019-02-19 11:02:58 +01:00
Fabian Homborg
38f37b7abc
commandline: Remove stray "w" short option
...
Fun fact: `commandline -w` hits an assert and crashes.
2019-02-19 11:02:58 +01:00
Aaron Gyes
3fe9353599
style guide: allow multi-line comments ( #5670 )
...
Closes #5670 .
2019-02-19 01:54:45 -08:00
Aaron Gyes
6fa8b028fc
fish_tests.cpp: fixup: I didn't notice the comma here.
2019-02-18 23:19:57 -08:00
Aaron Gyes
c2bc0c67f2
Don't use printf("%d") just to convert an int to a string.
...
std::to_string, std::to_wstring are more appropriate
2019-02-18 23:15:54 -08:00
ridiculousfish
59cb2d02a8
Only inherit a PWD if it resolves to "."
...
Fixes #5647
2019-02-18 13:20:40 -08:00
Jonathan Revah
8e41e3337c
small typo in the tutorial. stderr is redirected using 2> rather than >2
2019-02-18 22:08:58 +01:00