summaryrefslogtreecommitdiffstats
path: root/src/color.c
AgeCommit message (Collapse)Author
2021-04-01Revert "Improve undo / yank using malloc for batches"Andrés
This reverts commit 7633c8e177ff19a5ff0ccbfc1c28ac624ac38e06.
2021-04-01Improve undo / yank using malloc for batchesAndrés
2021-03-30Added UNDO and YANK macrosAndrés
2021-03-25Removed tabs. Corrected email address in filesAndrés
2021-03-21removed dim on WELCOME colorAndrés
2021-03-20convert atoi(get(...)) as wellNicolas Pitre
Similar to the previous patch. Here we use get_int() directly.
2021-03-20some more atoi(get_conf_value(...)) replacementsNicolas Pitre
Those didn't match the sed formula.
2021-03-20stop performing atoi() repeatedly on config valuesNicolas Pitre
Now that we store both the string and the numeric value for every config entries, let's grab those values directly. This should save quite some processing cycles. Those changes were performed with the following command: sed -e 's/atoi(get_conf_value *(\([^)]*\)))/get_conf_int(\1)/g' -i *.c *.y
2021-03-20Changed headings fg to black. Cursor bg to yellowAndrés
2021-03-19Try to handle ncurses version prior to 6.1Andrés
2021-03-19Changed default colorsAndrés
2021-03-19Changed default colorsAndrés
2021-03-18Forgot last doc changesv0.8.0Andrés
2021-03-17removed unneeded error messageAndrés
2021-03-15Avoid defining a stock NCURSES color. Suggest :redefine for that purpose.Andrés
2021-03-14REDEFINE_COLOR now takes 0-255 RGB valuesAndrés
2021-03-14added new underline_grid config value to show a nicer gridAndrés
2021-03-14Fixed SIGWINCH when input bar is at bottomAndrés
Added new HEADINGS_ODD, GRID_PAIR, and GRID_ODD types. Can be used like this: DEFINE_COLOR "cornsilk" 255 248 220 DEFINE_COLOR "wheat" 245 222 179 DEFINE_COLOR "dark_khaki" 189 183 107 DEFINE_COLOR "gray50" 127 127 127 DEFINE_COLOR "gray80" 204 204 204 DEFINE_COLOR "gray90" 229 229 229 color "type=GRID_PAIR fg=dark_khaki bg=cornsilk" color "type=GRID_ODD fg=dark_khaki bg=wheat" color "type=HEADINGS fg=dark_khaki bg=gray50" color "type=HEADINGS_ODD fg=gray50 bg=gray90"
2021-03-12work on RGB colors. added DEFINE_COLOR commandAndrés
2020-11-13Add italic option to colorsBenjamin Titmus
2020-07-13Mark array declarations extern to work with gcc 10 -fno-commonMike Sharov
2018-03-21changed parse_str function so can handle white spacesmongo
2017-12-27work on issue 228mongo
2017-12-15renamed winch to sig_winch. current fg and bg colors are kept if they are ↵andmarti1424
not specified in :cellcolor. added comments in tui.c
2017-12-10work on issue 219andmarti1424
2017-12-02Prevent some warnings during buildandmarti1424
2017-07-27More Doxygen comments.Charles Edward Pax
2017-07-21Changed default bg color from DEFAULT_COLOR to BLACK.Charles Edward Pax
2017-04-24fix file permissionsmongo
2017-04-21cpaste command to paste from clipboard to Sc-imandmarti1424
2017-04-09cleaned commentsandmarti1424
2017-04-08changed default colorsandmarti1424
2017-04-06renamed some ui functionsmongo
2017-04-06more cleaning and doc tui.cmongo
2017-04-06Added colors to helpmongo
2017-04-05cleaned color.candmarti1424
2017-04-05changed welcome screenandmarti1424
2017-04-03cleaning code. removing unneeded/comments lines. starting to isolate UI codemongo
2017-03-31Change DEFBG to DEFAULT_COLORmongo
2017-03-30changed fg color of cell_selection_scandmarti1424
2017-03-30ncurses - Default background supportandmarti1424
2017-03-28Clean some codeandmarti1424
2017-03-11new :unformat commandandmarti1424
2017-02-21changes in update of freeze rowandmarti1424
2017-02-11Changed default STRING fg colormongo
2017-02-10Change default color of headingsandmarti1424
2017-02-09redefine color changeandmarti1424
2016-12-29Change default bg colorandmarti1424
2016-09-09Removed commented includesmongo
2016-09-05Use pkg-config for ncursesw cflagsJohannes Löthberg
Fixes #2. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>