aboutsummaryrefslogtreecommitdiff
path: root/bb.c
AgeCommit message (Collapse)Author
2023-10-15Show entire relative path for glob matches in subdirectoriesBruce Hill
2023-10-15Deselect nonexistent files after commands are runBruce Hill
2022-04-07Redraw when window size changesBruce Hill
2022-04-06Bugfix for bindings errorBruce Hill
2021-12-09Simplify a bit with popen()/system()Bruce Hill
2021-09-29Formatting change to switch indentation styleBruce Hill
2021-07-29Fix for stderr in child processesBruce Hill
2021-07-29Cleanup, added FOREACH() macro, fixed some bugs with key bindings.Bruce Hill
2021-07-28Improved memory allocation/error checking helper functions. AlsoBruce Hill
reworked stderr so that it prints to the console on exit.
2021-07-15Unnecessary codeBruce Hill
2021-07-15CleanupBruce Hill
2021-07-15Removed unnecessary macroBruce Hill
2021-07-15Improved execution order during startup so it's less hackyBruce Hill
2021-07-06Cross-platform compatibility changesBruce Hill
2021-07-05Fix for running bb within a subcommand (e.g. `cd $(bb -d)`)Bruce Hill
2021-07-03Switch from /etc/xdg/bb to /etc/bbBruce Hill
2021-05-31Added lots of extra compiler checks and fixed a few minor issues.Bruce Hill
2021-05-07Code cleanupBruce Hill
2021-04-17TweaksBruce Hill
2021-04-17Proper history functionality via cd:- and cd:+Bruce Hill
2021-04-16Deprecated "<selection>" in favor of a better system using symlinksBruce Hill
2021-04-16Bugfix for <selection> files having weird truncation issuesBruce Hill
2021-02-07Stabilized randomization so it doesn't reshuffle when reloading the sameBruce Hill
dir (but it still will if the dir contents change)
2021-01-28Added commons clause to the licenseBruce Hill
2021-01-28Tweaked comment format and bumped copyright yearBruce Hill
2021-01-28Converted block comments to line commentsBruce Hill
2021-01-28Version bumpBruce Hill
2021-01-28Renamed $BBCURSOR -> $BB for concisionBruce Hill
2021-01-28Reorganized header filesBruce Hill
2021-01-28Renamed bterm -> terminalBruce Hill
2021-01-28Fixed up some makefile stuff with NAME flagBruce Hill
2021-01-01A bit of refactoring, moving more rendering code into draw.cBruce Hill
2020-12-30Refactoring into multiple files betterBruce Hill
2020-06-03Misc fixes and tweaksBruce Hill
2020-04-20Slightly optimized column rendering by using the sequence for movingBruce Hill
column position instead of row,col
2020-04-13Simplified and cleaned up rendering logicBruce Hill
2020-04-10General code cleanup and removed some unnecessary imports.Bruce Hill
2020-04-08Some overhaul and refactoring. bbstartup.sh and bindings.bb have beenBruce Hill
moved into scripts/bbstartup and scripts/bbbindkeys alongside the other scripts. Some minor bugs have been fixed as well, and a few bindings added.
2020-02-24Moved bbstartup into a script, renamed helper/ -> scripts/, and addedBruce Hill
bbshutdown script. Also tweaked some of the precedence.
2020-02-24Fixed some issues with invalid column handling.Bruce Hill
2020-02-24Added a slightly hacky fix to make sure `bb` can be run from the localBruce Hill
build directory and still have the helper scripts, bbstartup.sh, and the bindings work.
2020-02-24Don't close and reopen tty files when running scripts.Bruce Hill
2020-02-24Major update: instead of defining all the helper functions as staticBruce Hill
C-strings prefixed to commands (modified by the Makefile), the helper functions are now standalone scripts in the helpers/ dir, which gets added to "$PATH" when running bb.
2020-02-23Removed unnecessary warning.Bruce Hill
2020-02-23API tweaks and documentation updates.Bruce Hill
2020-02-23Cleaned up column rendering logic, including adding a 'stretchy' optionBruce Hill
for columns to fill available space. Also fixed some coloring issues.
2020-02-23Working version of pulling columns into their own file.Bruce Hill
2020-02-23Fixed selection issue.Bruce Hill
2020-02-23Fix for globbing into subdirectories (e.g. `bbcmd glob:"* */*"`)Bruce Hill
2020-02-22Fixed column separator widthBruce Hill