| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-10-13 | Removed (broken) code to escape newlines in output. If you care about | Bruce Hill | |
| files with newlines, just use '-0'. Otherwise, newlines will just be printed like every other character. | |||
| 2019-10-13 | More code cleanup and guards to check tty_in/out exist | Bruce Hill | |
| 2019-10-13 | More code cleanup: consolidating cd_to() and populate_files() into just | Bruce Hill | |
| populate_files(), cleaner startup behavior, less duplicative environment variable setting, misc. | |||
| 2019-10-13 | Slightly better warning message with + | Bruce Hill | |
| 2019-10-13 | More code cleanup, including tweaking matches_cmd() to figure out if | Bruce Hill | |
| there are required arguments or not, and refactoring run_bbcmd() to no longer return a value (which was ignored), but instead just spit out error messages to stderr if necessary. | |||
| 2019-10-13 | Code cleanup. | Bruce Hill | |
| 2019-10-13 | Fixed max depth str length to be closer to actual range of lengths. | Bruce Hill | |
| 2019-10-13 | Deprecated support for piping commands in to bb at startup (undocumented). ↵ | Bruce Hill | |
| Users should use xargs if they want to do that sort of thing. | |||
| 2019-10-13 | Cleaned up the command parsing code a bit to be slightly more correct | Bruce Hill | |
| and more compact. Now uses if-else-if chain instead of nested switch statements. This may be very slightly less performant, but probably not noticeable and much cleaner code. | |||
| 2019-10-12 | verhaul of terminal keypress handling and labeling to support more | Bruce Hill | |
| functionality for mouse clicking/dragging/left clicking/middle clicking/double clicking and to have more standardized behavior for key names and better handling of key modifiers (Ctrl, Alt, Meta, Shift). Also moved Ctrl-c and Ctrl-z to custom key bindings with (bb +kill and bb +suspend). Mouse clicking is now also handled in key bindings. | |||
| 2019-10-08 | Set default columns to what the startup commands were doing by default, | Bruce Hill | |
| so that's no longer needed in the startup commands. | |||
| 2019-10-03 | Removed some unnecessary +refreshes, no longer enable cursor by default, | Bruce Hill | |
| but instead have ask() etc. make the cursor visible. Also cleaned up some of the failure cases for better feedback. | |||
| 2019-10-03 | For +deselect, allow +deselect (no colon) to mean "deselect everything" | Bruce Hill | |
| to make it a simple command instead of +deselect: "$@" | |||
| 2019-10-03 | Added +execute (for, e.g. `bb +e:"bb +goto:$(ls | pick "Go to file: | Bruce Hill | |
| ")"`) | |||
| 2019-10-03 | Overhaul/cleanup of command line argument parsing. Now properly handles | Bruce Hill | |
| startup commands in the order: bbstartup.sh, bb +cmd, echo +cmd | bb | |||
| 2019-10-02 | Reordering startup commands and cleaning up piped in input. | Bruce Hill | |
| 2019-10-02 | Moved some variables out of global scope that weren't needed there. | Bruce Hill | |
| 2019-10-02 | Default behavior for invalid bb commands is now to print an error | Bruce Hill | |
| message to stdout on the default console screen and otherwise ignore it instead of exiting. | |||
| 2019-10-02 | Removed BB_QUIT | Bruce Hill | |
| 2019-09-30 | Fixed an issue with /etc/bb instead of /etc/xdg/bb and moved the startup | Bruce Hill | |
| command into bb.h with the other bb shell script stuff. | |||
| 2019-09-30 | Updated comment. | Bruce Hill | |
| 2019-09-30 | Moved config.h -> bb.h and did some cleanup, moving function | Bruce Hill | |
| declarations and constants out of bb.c and into bb.h. Also re-alphabetized the functions and updated the docs. | |||
| 2019-09-30 | Overhaul of how binding commands works. It's now all handled through | Bruce Hill | |
| bbstartup.sh, which loads bindings.bb and parses it to +bind:<keys>:<script> commands. | |||
| 2019-09-22 | Only toggle sort direction if it was the first sort and it was ~'d. | Bruce Hill | |
| 2019-09-22 | Now $@ is *always* the selected files, even if there are none. Cleaned | Bruce 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-21 | Changed sorting to support '~' meaning toggle current direction. | Bruce Hill | |
| 2019-09-21 | Added support for default shell other than sh (e.g. dash, in case sh | Bruce Hill | |
| links to bash) | |||
| 2019-09-21 | Fix for ctrl-z not restoring cursor visibility | Bruce Hill | |
| 2019-09-21 | Version bump. | Bruce Hill | |
| 2019-09-21 | Some tweaks to how the help menu displays bindings and added BBSHELLFUNC | Bruce Hill | |
| for allowing the `bb` function to be used in the ':' and '|' bindings | |||
| 2019-09-21 | Fix for weird terminal behavior (e.g. not echoing user input for | Bruce 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-21 | Fix 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-12 | Removed +bind functionality. | Bruce Hill | |
| 2019-09-12 | Replaced marks system with something a little more elegant using | Bruce 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-07 | Fixed mistake in `bb` function conditional | Bruce Hill | |
| 2019-07-15 | Fix for potential buffer overflow. | Bruce Hill | |
| 2019-07-12 | Added fallback for if binding has no description. | Bruce Hill | |
| 2019-07-12 | Overhaul to use a shell function for internal commands instead of `bb` | Bruce Hill | |
| itself, which lets bb work when not yet installed. | |||
| 2019-06-19 | Fixed issue with extra '/' appearing in link paths | Bruce Hill | |
| 2019-06-19 | Fix for Esc key causing hang | Bruce Hill | |
| 2019-06-19 | Removed unused import | Bruce Hill | |
| 2019-06-18 | Removed last traces of timeouts in bterm.h | Bruce Hill | |
| 2019-06-18 | Removed all the /dev/tty redirection and just dup2()'d it before | Bruce Hill | |
| exec()ing the user scripts | |||
| 2019-06-18 | Fixed change that broke `bb -d` by clearing bb's path prematurely. | Bruce Hill | |
| 2019-06-18 | Merge branch 'master' of bitbucket.org:spilt/bb | Bruce Hill | |
| 2019-06-17 | Merge branch 'master' of bitbucket.org:spilt/bb | Bruce Hill | |
| 2019-06-17 | Fixed onscreen off-by-one error | Bruce Hill | |
| 2019-06-17 | Changing IO code to no longer use poll() in favor of just reading input | Bruce Hill | |
| and using VMIN and VTIME. | |||
| 2019-06-17 | Fix for term attrs getting messed up by Fish shell | Bruce Hill | |
| 2019-06-15 | Added comment | Bruce Hill | |
