summaryrefslogtreecommitdiff
path: root/src/curses/curses.go
AgeCommit message (Collapse)Author
2016-11-07Prepare for termbox/windows buildJunegunn Choi
`TAGS=termbox make` (or `go build -tags termbox`)
2016-10-30Update ANSI processor to ignore ^N and ^OJunegunn Choi
This reverts commit 02c6ad0e59be75981baeb1f41cb0bad03aad1c6b.
2016-10-30Strip ^N and ^O from preview outputJunegunn Choi
https://github.com/junegunn/fzf/issues/391#issuecomment-257090266 e.g. fzf --preview 'printf "$(tput setaf 2)foo$(tput sgr0)bar\nbar\n"'
2016-10-21Set foreground color without affecting backgroundJunegunn Choi
Close #712
2016-09-29Add support for more ANSI color attributes (#674)Junegunn Choi
Dim, underline, blink, reverse
2016-06-11Add --preview and --preview-windowJunegunn Choi
Close #587
2016-06-11Ignore controls chars for bracketed paste modeJunegunn Choi
Close #594
2016-05-18More named keys: F5 ~ F10, ALT-/Junegunn Choi
2016-05-13Allow alt-enter and alt-space for --bind (#571)Junegunn Choi
2016-05-11Determine 256-color capability using tigetnum("colors")Junegunn Choi
Close #570
2015-11-20Merge pull request #380 from acornejo/androidJunegunn Choi
Add android build: `make android`
2015-11-18add android buildAlex Cornejo
2015-10-23Fix #391 - Strip non-printable charactersJunegunn Choi
2015-10-13Add bindable double-click event (#374)Junegunn Choi
2015-10-12[build] Link libncursesw when building 64-bit linux binaryJunegunn Choi
Close #376
2015-10-05Fix invalid interrupt handler during execute actionJunegunn Choi
Interrupt handling during execute action was not serialized and often caused crash, failed to restore the terminal state.
2015-09-22Use build tags to enable static linkingJunegunn Choi
2015-09-20Build linux binary on CentosJunegunn Choi
2015-09-19Build partially-static binary for linux (#350)Junegunn Choi
Instead of building a separate statically-linked binary, build partially-static binary that only contains ncurses to avoid compatibility issues in libc.
2015-09-15Change exit status (0: OK, 1: No match, 2: Error/Interrupted)Junegunn Choi
A la grep. Close #345
2015-07-28Do not proceed if $TERM is invalidJunegunn Choi
Related #305
2015-07-22Remove cbreak before rawJunegunn Choi
2015-07-22Adjust header color for dark color schemeJunegunn Choi
2015-07-22Add --header-file optionJunegunn Choi
2015-06-16Add key name "bspace" for --bind (bspace != ctrl-h)Junegunn Choi
2015-06-16Allow binding CTRL-G and CTRL-QJunegunn Choi
2015-06-07Use ncurses's newterm instead of swapping stdout and stderrDominik Honnef
2015-06-03Color customization (#245)Junegunn Choi
2015-05-21Custom key binding support (#238)Junegunn Choi
2015-04-18Add `--color=[dark|light|16|bw]` optionJunegunn Choi
- dark: the current default for 256-color terminal - light: color scheme for 256-color terminal with light background - 16: the default color scheme for 16-color terminal (`+2`) - bw: no colors (`+c`)
2015-04-16Remove unused variableJunegunn Choi
2015-04-14Fix #185 - Terminate on RuneErrorJunegunn Choi
2015-03-29Implement --expect option to support simple key bindings (#163)Junegunn Choi
2015-03-19Add support for ANSI color codesJunegunn Choi
2015-01-23Redraw and adjust upon terminal resizeJunegunn Choi
2015-01-12LintJunegunn Choi
2015-01-08Remove call to ncurses set_tabsize()Junegunn Choi
Not available on old verions of ncurses
2015-01-07Fix i386 buildJunegunn Choi
2015-01-04Rewrite fzf in GoJunegunn Choi