aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-22Now $@ is *always* the selected files, even if there are none. CleanedBruce Hill
up the default bindings a bit to be more explicit about manipulating the cursor file vs. manipulated selected files. Added support for `ask -n` and generally confirming with a single 'y' keystroke instead of 'y<enter>' Also added a binding for `rename`-command batch renaming.
2019-09-22Per-ASK() history for `ask` using the __COUNTER__ macroBruce Hill
2019-09-22Removing remnants of ASKECHOBruce Hill
2019-09-21Removed redundant sorting option.Bruce Hill
2019-09-21Changed sorting to support '~' meaning toggle current direction.Bruce Hill
2019-09-21Tweaked code for PICK() and the code that asks for 1 character of inputBruce Hill
for better POSIX sh compatibility and to remove unused vars.
2019-09-21Added support for default shell other than sh (e.g. dash, in case shBruce Hill
links to bash)
2019-09-21Fix for bashismBruce Hill
2019-09-21Updated readmeBruce Hill
2019-09-21Added better support for custom asker/picker functionality andBruce Hill
simplified some of the things.
2019-09-21Fix for ctrl-z not restoring cursor visibilityBruce Hill
2019-09-21Consolidated new file/new dir and changed move to ctrl-v by defaultBruce Hill
2019-09-21Version bump.Bruce Hill
2019-09-21Some tweaks to how the help menu displays bindings and added BBSHELLFUNCBruce Hill
for allowing the `bb` function to be used in the ':' and '|' bindings
2019-09-21Fix for weird terminal behavior (e.g. not echoing user input forBruce Hill
subprocesses if bb was started with the terminal attributes set with NOECHO) by setting up a "default" termios struct with sane settings instead of relying on bb being launched with sane settings.
2019-09-21Added backspace key for going to prev directory (instead of just '-')Bruce Hill
2019-09-21Added hotkey for pager ('p')Bruce Hill
2019-09-21Added support for CSI Ps P -> Delete keyBruce Hill
2019-09-21Fix for broken behavior in the help menu (hanging when reaching the end,Bruce Hill
due to not close()ing the file descriptor, and exiting on ctrl-c)
2019-09-21Tweaks to how spinning and confirmation workBruce Hill
2019-09-15Improved confirmations and cleaned up the marks system a bit.Bruce Hill
2019-09-12Removed +bind functionality.Bruce Hill
2019-09-12Better handling for interrupts during markBruce Hill
2019-09-12Replaced marks system with something a little more elegant usingBruce Hill
symbolic links in ~/.config/bb/marks/. The new version is a little more flexible (arbitrary mark names), persistent across bb sessions, and uses a bit less code.
2019-09-07When choosing sorting, immediately select method on first keystroke.Bruce Hill
2019-09-07Don't copy files if none are selected.Bruce Hill
2019-09-07Fixed mistake in `bb` function conditionalBruce Hill
2019-09-07Fixed check for empty string in prefixes and stuffBruce Hill
2019-07-24Merge branch 'master' of bitbucket.org:spilt/bbBruce Hill
2019-07-24Replaced bashism "[[" with "test -n"Bruce Hill
2019-07-15Added preview imageBruce Hill
2019-07-15Added documentation for dmenu.Bruce Hill
2019-07-15Added dmenu support in makefileBruce Hill
2019-07-15Fix for potential buffer overflow.Bruce Hill
2019-07-12Added fallback for if binding has no description.Bruce Hill
2019-07-12Overhaul to use a shell function for internal commands instead of `bb`Bruce Hill
itself, which lets bb work when not yet installed.
2019-06-30Removed some remnants of the 'select:*' API and executing files with theBruce Hill
executable bit set
2019-06-30Added some missing escape sequencesBruce Hill
2019-06-19Fixed issue with extra '/' appearing in link pathsBruce Hill
2019-06-19Fix for Esc key causing hangBruce Hill
2019-06-19Removed unused importBruce Hill
2019-06-18Removed last traces of timeouts in bterm.hBruce Hill
2019-06-18Changed -std=gnu99 to -std=c99Bruce Hill
2019-06-18Removed all the /dev/tty redirection and just dup2()'d it beforeBruce Hill
exec()ing the user scripts
2019-06-18Fixed change that broke `bb -d` by clearing bb's path prematurely.Bruce Hill
2019-06-18Merge branch 'master' of bitbucket.org:spilt/bbBruce Hill
2019-06-17Merge branch 'master' of bitbucket.org:spilt/bbBruce Hill
2019-06-17Fixed onscreen off-by-one errorBruce Hill
2019-06-17Changing IO code to no longer use poll() in favor of just reading inputBruce Hill
and using VMIN and VTIME.
2019-06-17Fix for term attrs getting messed up by Fish shellBruce Hill