ridiculousfish
|
0d3169ef70
|
Run restyle.sh to enforce style rules.
|
2014-03-31 10:01:39 -07:00 |
|
ridiculousfish
|
d4fafeb6d6
|
Merge branch 'master' into 1218_rebase
Conflicts:
builtin.cpp
builtin_commandline.cpp
highlight.cpp
input.cpp
input.h
reader.cpp
screen.cpp
screen.h
|
2014-03-29 14:19:45 -07:00 |
|
ridiculousfish
|
5be3606236
|
Increased support for completion search field. Use btab (shift-tab) to
complete-and-search.
|
2014-01-27 00:56:13 -08:00 |
|
ridiculousfish
|
f58dff62c7
|
Beginnings of work for search field feature of new pager
|
2014-01-26 00:41:30 -08:00 |
|
ridiculousfish
|
d9d65577f4
|
Improved navigation of pager list. Added tests for it too.
|
2014-01-19 16:41:40 -08:00 |
|
ridiculousfish
|
c6e5201e15
|
Initial support for navigating completions that appear under the
commandline using arrow keys
|
2014-01-17 12:04:03 -08:00 |
|
ridiculousfish
|
0627ae82fb
|
Clean up pager on exit from interactive read
|
2014-01-15 18:21:38 -08:00 |
|
Julian Aron Prenner
|
213e907044
|
Merge remote-tracking branch 'upstream/master' into bind_mode
Conflicts:
builtin.cpp
reader.cpp
share/functions/fish_default_key_bindings.fish
|
2014-01-15 15:27:06 +01:00 |
|
Julian Aron Prenner
|
c8d5131a42
|
Add experimental support for selection and visual mode
|
2014-01-15 15:07:22 +01:00 |
|
ridiculousfish
|
40897cd7da
|
Merge branch 'master' into pager
Conflicts:
screen.h
|
2014-01-15 01:23:30 -08:00 |
|
ridiculousfish
|
e2fe873049
|
Change highlight colors from a bitmask into a combination enum / bitmask
so that we can support more than 16 color specifications.
|
2014-01-15 01:01:25 -08:00 |
|
ridiculousfish
|
295c8f48a6
|
Teach screen how to render completion page. Correct spacing in
completion page contents.
|
2014-01-14 15:39:53 -08:00 |
|
ridiculousfish
|
899dafb33f
|
Migrating new pager implementation into a class. Further work on
constructing a screen_data_t from it.
|
2014-01-13 16:41:22 -08:00 |
|
ridiculousfish
|
ef4465efdb
|
More work on builtin pager
|
2013-12-07 12:43:40 -08:00 |
|
ridiculousfish
|
cf766b55cc
|
Fix formatting
|
2013-10-26 15:27:39 -07:00 |
|
ridiculousfish
|
991c900fc6
|
Set of changes to improve detection of escape sequences for prompt width
computation. Addresses #767
|
2013-09-29 02:48:35 -07:00 |
|
ridiculousfish
|
d6791a836b
|
Include the autosuggestion in history if it was truncated
https://github.com/fish-shell/fish-shell/issues/650
|
2013-08-20 20:08:56 -07:00 |
|
Yannis Chatzimichos
|
b9ba227733
|
Clean up comments and fix spelling errors
|
2013-02-20 18:07:38 -08:00 |
|
Cheer Xiao
|
268d64d244
|
Fix spelling: s/inetrnal/internal/g
|
2013-01-24 19:20:09 +08:00 |
|
ridiculousfish
|
85fdf587c0
|
When the user input contains capital letters, use its case rather than the autosuggestion's case
Fixes https://github.com/fish-shell/fish-shell/issues/335
|
2013-01-05 15:21: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
|
9992b8eb0e
|
Apply new indentation, brace, and whitespace style
|
2012-11-18 16:30:30 -08:00 |
|
Łukasz Niemier
|
47df1ae40a
|
Remove trailing whitespaces and change tabs to spaces
|
2012-11-18 11:23:22 +01:00 |
|
ridiculousfish
|
d76f880faf
|
Support for fish_right_prompt
Fixes https://github.com/fish-shell/fish-shell/issues/80
|
2012-11-07 19:59:20 -08:00 |
|
ridiculousfish
|
5ba1261285
|
Initial right_prompt work
|
2012-11-04 23:21:37 -08:00 |
|
ridiculousfish
|
6b026e399c
|
Prevent some cases where garbage gets dumped on the screen during window resize under new soft wrapping architecture
|
2012-10-02 17:30:07 -07:00 |
|
ridiculousfish
|
a661c03743
|
Work on soft wrapping to address https://github.com/fish-shell/fish-shell/issues/300
Resizing is still wonky
|
2012-10-01 03:29:18 -07:00 |
|
ridiculousfish
|
5880cd88c8
|
Switch from int cursor[2] to struct cursor { int x; int y; }
|
2012-08-04 13:54:20 -07:00 |
|
ridiculousfish
|
54ceb4211e
|
Additional warning fixes and migration from int to size_t or long where appropriate
|
2012-08-04 13:47:56 -07:00 |
|
ridiculousfish
|
8185bee4b8
|
Lots of work towards making fish build without warnings on Mountain Lion, mostly in terms of using size_t instead of int
|
2012-08-04 11:34:45 -07:00 |
|
ridiculousfish
|
ea1bfd715e
|
Set of changes to improve Unicode support with respect to combining characters.
Should address https://github.com/fish-shell/fish-shell/issues/155
|
2012-07-15 10:45:18 -07:00 |
|
ridiculousfish
|
f8b4c1b389
|
First pass at making autosuggestions not trigger wrapping
Addresses https://github.com/fish-shell/fish-shell/issues/167
|
2012-07-12 12:51:47 -07:00 |
|
ridiculousfish
|
0c9a1a56c2
|
Lots of work on web config
Change to make fish immediately show color changes
|
2012-03-25 16:00:17 -07:00 |
|
ridiculousfish
|
0a4c72e78b
|
Added color.h, color.cpp. Got term256 colors working.
|
2012-02-12 18:05:59 -08:00 |
|
ridiculousfish
|
d66700a0e4
|
Color work
|
2012-02-11 17:07:56 -08:00 |
|
ridiculousfish
|
b59a22bef0
|
Colors
|
2012-02-10 17:57:20 -08:00 |
|
ridiculousfish
|
78322a6321
|
Migrate some more away from array_list_t
|
2011-12-28 12:36:47 -08:00 |
|
ridiculousfish
|
46fa2dd2f0
|
Migration of screen away from ad-hoc lists
|
2011-12-27 18:41:38 -08:00 |
|
ridiculousfish
|
8d2f107d61
|
Some changes to migrate towards C++ and a multithreaded model
|
2011-12-26 19:18:46 -08:00 |
|
Grissiom
|
c6372a1b3f
|
remove trailing spaces
This is done by `sed -i -e 's/[ \t]*$//' *.[c,h]`, which should not
introduce any functionality change.
|
2010-09-18 09:51:16 +08:00 |
|
liljencrantz
|
87db9517e9
|
Add lots of new code comments.
darcs-hash:20080113164747-75c98-9d0cefd27be7aef7ba60772616d9da7e6bb52912.gz
|
2008-01-14 02:47:47 +10:00 |
|
liljencrantz
|
4b85eb32d7
|
Remove readline legacy input function 'winch' and replace its functionality with an event handler function. Once again make the null keybinding do nothing. There are various sitauations where you want to perform a repaint at just the right time, and more or less by luck it worked very well to do this on null, but this really shouldn't happen and no longer does. Hopefully if new repainting issues turn up, they can be fixed at the root instead of once again reapplying this broken bandaid.
darcs-hash:20070930225354-75c98-8e2b518aa0ef694cee889c1c599ff4f158d9eb7f.gz
|
2007-10-01 08:53:54 +10:00 |
|
liljencrantz
|
0b7b20f013
|
Make sure that ouput with no trailing newline is not eaten. This is a regression bug fix.
darcs-hash:20070924081301-75c98-86bd87a9323044807e78b8eb904bd6c5830ee23f.gz
|
2007-09-24 18:13:01 +10:00 |
|
axel
|
9a0f712e29
|
Make the screen repainting code slightly more robust by keeping track of whether clr_eol may be needed to clear 'debris' from e.g. resizes
darcs-hash:20061009132642-ac50b-6162ed86a97771a8da4be2adff3ad6a4f1851616.gz
|
2006-10-09 23:26:42 +10:00 |
|
axel
|
560e53fd5f
|
Add autoindentation support
darcs-hash:20061007005625-ac50b-11873654797eb1e98fd17893022bdf995be3e2aa.gz
|
2006-10-07 10:56:25 +10:00 |
|
axel
|
ad5a6e0552
|
Move the code keeping track of file descriptor modification from reader.c to screen.c
darcs-hash:20061004233312-ac50b-9a10ff758375885ae78a5e5c04279c1976a037ea.gz
|
2006-10-05 09:33:12 +10:00 |
|
axel
|
d1078f8582
|
Detect and handle terminals size changes
darcs-hash:20061004214502-ac50b-aaf5b76a6281c0ba8757e794b0a802793ce92916.gz
|
2006-10-05 07:45:02 +10:00 |
|
axel
|
13b1ea3f50
|
Various fixes to make double-wide characters (e.g. asian characters) work with the new multiline editing code
darcs-hash:20061001232136-ac50b-9bd771b382c00b71c5e2ee75df77ba2594b2a738.gz
|
2006-10-02 09:21:36 +10:00 |
|
axel
|
44ff9956b9
|
Second cleanup of multiline editing patch. Add code comments, use better variable names, etc..
darcs-hash:20061001212243-ac50b-6cd5abfcf6b7013fd23b27734ca29af27d945ca3.gz
|
2006-10-02 07:22:43 +10:00 |
|