aboutsummaryrefslogtreecommitdiffhomepage
path: root/pager.cpp
Commit message (Collapse)AuthorAge
* Add paging into navigating pagerGravatar Martin Hamrle2015-03-20
|
* Remove "squeezing" code in pagerGravatar ridiculousfish2014-11-09
| | | | | | The "squeezing" code attempted to force completions to fit onto a single screen, but could render them unreadable. Let's just get rid of it.
* Set of fixes for issues identified by cppcheckGravatar ridiculousfish2014-10-30
|
* Remove my_wcswidth() in favor of fish_wcswidth()Gravatar Kevin Ballard2014-09-25
| | | | | | my_wcswidth() was just a wrapper around fish_wcswidth() already. Instead, add two convenience overrides of fish_wcswidth() to common.h that make it a drop-in replacement for my_wcswidth().
* pager: translate additional stringsGravatar Iuri Rezende Souza2014-09-04
|
* Don't show "and 1 more rows" in pager if that requires a rowGravatar ridiculousfish2014-08-11
|
* Run restyle.sh to enforce style rules.Gravatar ridiculousfish2014-03-31
|
* Remove old pager remnants, including documentation and references in theGravatar ridiculousfish2014-03-15
| | | | build system
* Revert "Merge pull request #1317 from pullreq/cpp"Gravatar ridiculousfish2014-02-28
| | | | | | | This reverts commit 74135c0600d5dcc40d396d0e7293c17b8d4bdaa7, reversing changes made to 6d749789ce240a3e6f1447777db63fd8e7525560. See discussion in #1317
* Fixes .c -> .cpp in comments. For doxygen.Gravatar Geoff Nixon2014-02-27
|
* Dead storesGravatar Geoff Nixon2014-02-27
|
* Allow double-tapping tab to fully disclose pager, per #291Gravatar ridiculousfish2014-02-20
|
* Remove the reader_selected_completion_changed callback. Fix a hang whenGravatar ridiculousfish2014-02-16
| | | | the pager gets empty, as reported in 291
* Make the pager search field allow searching on the prefixGravatar ridiculousfish2014-02-16
|
* Correctly initialize search_field_shown to avoid phantom search fieldGravatar ridiculousfish2014-01-30
| | | | after the prompt
* NULL -> falseGravatar ridiculousfish2014-01-28
|
* Support escape or up-arrow to cancel the completion search field.Gravatar ridiculousfish2014-01-27
|
* Increased support for completion search field. Use btab (shift-tab) toGravatar ridiculousfish2014-01-27
| | | | complete-and-search.
* Beginnings of work for search field feature of new pagerGravatar ridiculousfish2014-01-26
|
* Suppress the pager progress message if the listing fits onscreenGravatar ridiculousfish2014-01-24
|
* Remove yet more unnecessary fish_pager.cpp specific code from the new pagerGravatar ridiculousfish2014-01-24
|
* Remove some unnecessary fish_pager.cpp specific code from the new pagerGravatar ridiculousfish2014-01-24
|
* Support for "merged completions" (multiple completions on the same line)Gravatar ridiculousfish2014-01-24
| | | | in new pager. Support for using up-arrow to end pager navigation.
* Use ellipsis in pager progress messageGravatar ridiculousfish2014-01-22
|
* Various tweaks and improvements to new pager, including disclosureGravatar ridiculousfish2014-01-22
| | | | feature
* Allow down arrow to enter pager. Clean up repainting withinGravatar ridiculousfish2014-01-21
| | | | reader_readline
* Support for scrolling through the pagerGravatar ridiculousfish2014-01-21
|
* Support for correctly resizing pager contents.Gravatar ridiculousfish2014-01-19
|
* Improved navigation of pager list. Added tests for it too.Gravatar ridiculousfish2014-01-19
|
* Further work on keyboard navigating the completion listGravatar ridiculousfish2014-01-18
|
* Initial support for navigating completions that appear under theGravatar ridiculousfish2014-01-17
| | | | commandline using arrow keys
* Clean up pager on exit from interactive readGravatar ridiculousfish2014-01-15
|
* Update pager colors to use new non-bitmask architecture.Gravatar ridiculousfish2014-01-15
|
* Teach screen how to render completion page. Correct spacing inGravatar ridiculousfish2014-01-14
| | | | completion page contents.
* Migrating new pager implementation into a class. Further work onGravatar ridiculousfish2014-01-13
| | | | constructing a screen_data_t from it.
* More work on builtin pagerGravatar ridiculousfish2013-12-07
|
* First round of changes to migrate pager inside fish, in preparation forGravatar ridiculousfish2013-12-01
presenting completions underneath.