ridiculousfish
|
02f16e90b6
|
Turn on incremental history saving (cross your fingers)
|
2012-12-03 00:14:22 -08:00 |
|
ridiculousfish
|
984a498063
|
More work towards incremental history. Added some tests.
|
2012-12-02 23:38:38 -08:00 |
|
ridiculousfish
|
c1b51c6530
|
First attempt towards supporting incremental history writes
|
2012-12-02 16:39:35 -08:00 |
|
ridiculousfish
|
224de547b3
|
Ensure we repaint the prompt after resetting it, when colors change.
Fixes https://github.com/fish-shell/fish-shell/issues/418
|
2012-12-02 11:53:34 -08:00 |
|
Jean-Daniel Dupas
|
43d2e15bb7
|
Try to fix create_manpage_completions script for system where sysgetdefaultencoding() returns ASCII.
|
2012-12-02 15:31:44 +01:00 |
|
ridiculousfish
|
ac70772070
|
Remove code that tries to load files in include directory
https://github.com/fish-shell/fish-shell/issues/416
|
2012-12-01 21:17:16 -08:00 |
|
ridiculousfish
|
1feea366ca
|
Fix for off by one error with "missing newline" code
|
2012-12-01 20:05:49 -08:00 |
|
ridiculousfish
|
f599239fd4
|
Added xcodebuild target in Makefile
|
2012-12-01 20:05:35 -08:00 |
|
ridiculousfish
|
a122d2eb50
|
First attempt at appending a "missing new line" character
https://github.com/fish-shell/fish-shell/issues/397
|
2012-12-01 15:44:09 -08:00 |
|
ridiculousfish
|
17e7860700
|
Fix chsh completion
https://github.com/fish-shell/fish-shell/issues/415
|
2012-12-01 14:12:11 -08:00 |
|
ridiculousfish
|
34fab879cb
|
Fix to xcodebuild
https://github.com/fish-shell/fish-shell/issues/229
|
2012-12-01 13:28:30 -08:00 |
|
David Adam (zanchey)
|
b02ed0bbe6
|
use sgrep instead of grep
|
2012-11-27 13:02:13 +08:00 |
|
David Adam (zanchey)
|
165ba535f0
|
use getent for hosts if available, otherwise use more resilient processing of /etc/hosts
|
2012-11-27 11:49:52 +08:00 |
|
David Adam (zanchey)
|
8253df7c3d
|
use getent for passwd and group if available
|
2012-11-27 11:49:52 +08:00 |
|
ridiculousfish
|
4788da204b
|
Additional improvements to line wrapping reliability
|
2012-11-26 12:31:44 -08:00 |
|
ridiculousfish
|
cf11d1e4e6
|
Additional changes to try to improve line wrapping
|
2012-11-25 01:26:58 -08:00 |
|
ridiculousfish
|
e557327860
|
Coalesce redundant repaints, prepare to address some resizing issues (again!)
|
2012-11-24 21:06:42 -08:00 |
|
ridiculousfish
|
e152cfac34
|
Change to make the lookahead array a std::stack instead of a static 4k list(!)
|
2012-11-24 16:58:30 -08:00 |
|
ridiculousfish
|
464f1f44aa
|
Improvements to avoid clearing the screen as often, which addresses a problem where the screen may be blank
Fixes https://github.com/fish-shell/fish-shell/issues/402
|
2012-11-24 16:42:25 -08:00 |
|
ridiculousfish
|
bf27cb1f5e
|
Further fixes to newline escaping
Addresses issue described in https://github.com/fish-shell/fish-shell/issues/347#issuecomment-10650443
|
2012-11-23 12:03:36 -08:00 |
|
ridiculousfish
|
654010f639
|
Grammar fix in a comment
|
2012-11-23 11:25:33 -08:00 |
|
ridiculousfish
|
918f84438f
|
Don't autosuggest files until after we've tried (and maybe failed) to load completions
Fixes https://github.com/fish-shell/fish-shell/issues/378
|
2012-11-23 11:22:58 -08:00 |
|
ridiculousfish
|
93e2415924
|
Fix a memory leak
|
2012-11-23 11:14:16 -08:00 |
|
ridiculousfish
|
4837a2d0df
|
Replaced some usage of wchar_t * with wcstring in complete(). Some style fixes.
|
2012-11-23 11:12:22 -08:00 |
|
ridiculousfish
|
be80e1a863
|
Improvements to man page parser, and to description truncation
Fixes https://github.com/fish-shell/fish-shell/issues/98
|
2012-11-22 20:32:19 -08:00 |
|
situ
|
e53e00c4f9
|
Fixed compilation error in expand.cpp
Fixed https://github.com/fish-shell/fish-shell/issues/401
|
2012-11-22 22:41:36 +05:30 |
|
ridiculousfish
|
90495f3ac5
|
Implement new newline-escaping behavior. Backslashes at the end of lines now essentially delete the newline, within normal text or double quotes. Backslashes are retained within single quotes.
Fixes https://github.com/fish-shell/fish-shell/issues/347
Fixes https://github.com/fish-shell/fish-shell/issues/52
|
2012-11-22 01:09:07 -08:00 |
|
ridiculousfish
|
6fc9e6f21e
|
Make tok_first return a wcstring instead of a wchar_t*
|
2012-11-21 22:23:48 -08:00 |
|
ridiculousfish
|
7117c4a5ee
|
Remove tok_destroy
|
2012-11-21 22:14:28 -08:00 |
|
ridiculousfish
|
a3a7c48799
|
Modify tokenizer to store last token in a wcstring
|
2012-11-21 22:09:35 -08:00 |
|
ridiculousfish
|
f545fb2491
|
Work towards refactoring tokenizer to be a real object
|
2012-11-21 17:48:35 -08:00 |
|
ridiculousfish
|
e73be48d96
|
Escape arguments to certain shell invocations in Makefile
https://github.com/fish-shell/fish-shell/issues/387
|
2012-11-21 13:42:30 -08:00 |
|
ridiculousfish
|
04b1b83039
|
Fix for buffer overrun in tokenizer for strings that end with backslash
Fixes https://github.com/fish-shell/fish-shell/issues/389
|
2012-11-20 14:51:30 -08:00 |
|
ridiculousfish
|
e9d216bc84
|
Fixed recursive brace expansion
https://github.com/fish-shell/fish-shell/issues/399
|
2012-11-20 13:52:53 -08:00 |
|
ridiculousfish
|
87510ac77d
|
Hungary notation -> Hungarian notation
|
2012-11-19 13:16:50 -08:00 |
|
ridiculousfish
|
44ce3e6731
|
Changes to make word movement less aggressive
https://github.com/fish-shell/fish-shell/issues/384
|
2012-11-19 02:41:57 -08:00 |
|
ridiculousfish
|
26678682ca
|
Fix indentation of switch statements
|
2012-11-19 00:31:03 -08:00 |
|
ridiculousfish
|
7d63900fb8
|
Modified project file to reflect new name
|
2012-11-19 00:17:54 -08:00 |
|
ridiculousfish
|
e47d56a84f
|
FishsFish.xcodeproj -> fish.xcodeproj
|
2012-11-19 00:17:25 -08:00 |
|
ridiculousfish
|
9b52269a5b
|
Updated style guide to reflect modified style
|
2012-11-18 16:30:53 -08:00 |
|
ridiculousfish
|
9992b8eb0e
|
Apply new indentation, brace, and whitespace style
|
2012-11-18 16:30:30 -08:00 |
|
ridiculousfish
|
bab69f2672
|
Merge branch 'master' into fix-indentation-merge
|
2012-11-18 15:12:22 -08:00 |
|
Łukasz Niemier
|
2e33633698
|
More stylefixes
|
2012-11-18 13:52:21 +01:00 |
|
Łukasz Niemier
|
eb7601d116
|
Add styleguide
|
2012-11-18 13:39:37 +01:00 |
|
ridiculousfish
|
5827bfd9a2
|
Default fish_pager_color_description to '555 yellow'
Fixes https://github.com/fish-shell/fish-shell/issues/280
|
2012-11-18 03:17:51 -08:00 |
|
ridiculousfish
|
dc8cc39bc8
|
Don't autosuggest in builtin_read
https://github.com/fish-shell/fish-shell/issues/29
|
2012-11-18 02:43:35 -08:00 |
|
Łukasz Niemier
|
47df1ae40a
|
Remove trailing whitespaces and change tabs to spaces
|
2012-11-18 11:23:22 +01:00 |
|
ridiculousfish
|
c9c2fc5ee3
|
Restore terminal foreground process group on exit
Fixes https://github.com/fish-shell/fish-shell/issues/197
|
2012-11-18 02:16:14 -08:00 |
|
Terje Larsen
|
b79854ad1a
|
Optimize staged logic
|
2012-11-17 13:37:32 -08:00 |
|
Terje Larsen
|
8229b17f0d
|
Use double-dollar vars for dynamic variables
|
2012-11-17 13:37:32 -08:00 |
|