aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-25Updated `mkdir` syntax to make sure it works on macBruce Hill
2019-11-24Added Ctrl-L for '+refresh' to follow vim, etc.Bruce Hill
2019-11-24Minor version bumpBruce Hill
2019-11-24Bunch of minor pedantic cleanups to get rid of warnings and tidy up theBruce Hill
code.
2019-11-24Some speculative fixes/improvements for mac `read` command use.Bruce Hill
2019-11-24Changed order of `make install` so that even if `bb` is open, theBruce Hill
other install files will still be put in place.
2019-11-24sed change for compatibility with Mac's version of sed.Bruce Hill
2019-11-11More unambiguous and simple command line semantics (bb [options/cmds]Bruce Hill
[[--] path])
2019-11-11Fix for creating files/dirs with "--"Bruce Hill
2019-11-11Fixed `bb -- +dirname` not respecting `--` properlyBruce Hill
2019-11-11Refactored `bb +...` to `bbcmd ...` within bb bindings. This makesBruce Hill
things a lot less ambiguous. Also removed the default marks created in bbstartup.sh and ensured that `$XDG_DATA_HOME` and `$XDG_CONFIG_HOME` always get set as environment variables.
2019-11-11Updated docs.Bruce Hill
2019-11-11Switched bindings to use `expr` instead of `grep` for openingBruce Hill
2019-11-11Cleanup/refactor to move keyboard input and scanning the command fileBruce Hill
into their own functions. This massively simplifies bb_browse().
2019-11-11Rearranged bb_browse() a little to include more of the setup work.Bruce Hill
2019-11-11Added error checksBruce Hill
2019-11-11Simplified "+help" binding by using a temp file and run_script()Bruce Hill
2019-11-11Made running_procs static.Bruce Hill
2019-11-09Removed the "or pause" behavior for failed scripts.Bruce Hill
2019-11-09Added 'select pattern' and 'unselect pattern' bindings and improvedBruce Hill
correctness of `find`-based bindings.
2019-11-08Fixed up loading/saving selectionsBruce Hill
2019-11-08Reverting `SH` changeBruce Hill
2019-11-08Cleaned up definitions for `pause` and `sh`Bruce Hill
2019-11-08Added query string to CONFIRM definition using `ask`Bruce Hill
2019-11-08Added better doc for unscrollBruce Hill
2019-11-08Cleanup of bb->selected (renamed from bb->firstselected) to ensure thatBruce Hill
$n arguments for scripts are in FIFO order instead of LIFO order (i.e. $1 is the first selected item). `Ctrl-a` is also now bound to use `+select` instead of `+select: *` which ensures that the correct sorting order is preserved.
2019-11-06Added printing to `ask1` commandBruce Hill
2019-11-06Better error handling/reportingBruce Hill
2019-11-04Added some messaging to replace the spinner's functionality and deletedBruce Hill
pointless Ctrl-y binding.
2019-11-04Fixed issue with deselecting deleted files not working becauseBruce Hill
realpath() depends on the file existing. Also added more detail to error messages to make tracking down issues easier.
2019-11-04Fixed extra spacing with multi-line confirms.Bruce Hill
2019-11-04Removed `spin` because the "eval" part of it was broken and it addsBruce Hill
unnecessary complexity.
2019-11-04Fixed shell scripting issue that had problems with "$((foo) | baz)" dueBruce Hill
to double parentheses.
2019-11-01Consolidated winwidth/winheight into winsize variable, which makesBruce Hill
things a little more straightforward.
2019-11-01Removed nprocs variable, as it was a potential source of errors if itBruce Hill
got out of sync.
2019-11-01Version bumpBruce Hill
2019-11-01Removed `bb +execute:` as it was not used.Bruce Hill
2019-11-01Fix for improperly initialized variable.Bruce Hill
2019-11-01Oops, I guess it was needed after all.Bruce Hill
2019-11-01Removed unnnecessary variableBruce Hill
2019-11-01Cleanup/overhaul of how symlinks are handled and how paths are parsed.Bruce Hill
Now `bb` will fail on `bb nonexistant/..` and will display `/foo/baz/atfoo/` as `/foo/` if `atfoo` is a symlink to `/foo`
2019-11-01Fix for errors that occur before initializing the terminal.Bruce Hill
2019-11-01Fix for jump to mark bindingBruce Hill
2019-11-01Minor version bump.Bruce Hill
2019-11-01Fixed Ctrl-a syntax errorBruce Hill
2019-11-01Fixed "bb +." being broken.Bruce Hill
2019-11-01Added support for NULL-byte delimited picking, cleaned up some of theBruce Hill
bindings making them faster/simpler.
2019-11-01Moved `dirty` from being a bit on `bb` to being a global, whichBruce Hill
simplifies the code a bit, plus some other minor cleanups.
2019-10-30Better warning messages.Bruce Hill
2019-10-27Mostly finalized working version of better signal handling, includingBruce Hill
allowing for suspended/resuming processes (bb +fg) and cleaner linked list handling code.