Commit Graph

276 Commits

Author SHA1 Message Date
66d20ba811 Fix for jump to mark binding 2019-11-01 16:41:54 +01:00
954c42df0c Minor version bump. 2019-11-01 14:54:34 +01:00
cc1e701587 Fixed Ctrl-a syntax error 2019-11-01 14:54:08 +01:00
f960755b13 Fixed "bb +." being broken. 2019-11-01 14:53:50 +01:00
308c8c3e6d Added support for NULL-byte delimited picking, cleaned up some of the
bindings making them faster/simpler.
2019-11-01 14:51:30 +01:00
3fd5ed860d Moved dirty from being a bit on bb to being a global, which
simplifies the code a bit, plus some other minor cleanups.
2019-11-01 14:50:44 +01:00
02beee84fc Better warning messages. 2019-10-30 13:43:49 +01:00
55d3f0e160 Mostly finalized working version of better signal handling, including
allowing for suspended/resuming processes (bb +fg) and cleaner linked
list handling code.
2019-10-27 14:58:23 -07:00
dc6ecc4e7f Removed (broken) code to escape newlines in output. If you care about
files with newlines, just use '-0'. Otherwise, newlines will just be
printed like every other character.
2019-10-13 21:48:43 -07:00
6a22cda2e9 More code cleanup and guards to check tty_in/out exist 2019-10-13 21:48:31 -07:00
c9d45599cc Minor version bump 2019-10-13 21:21:20 -07:00
ff8c2f9c62 More code cleanup: consolidating cd_to() and populate_files() into just
populate_files(), cleaner startup behavior, less duplicative environment
variable setting, misc.
2019-10-13 21:20:00 -07:00
5ad09087c2 Slightly better warning message with + 2019-10-13 19:36:25 -07:00
55daca6a2f More code cleanup, including tweaking matches_cmd() to figure out if
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 19:34:16 -07:00
d77907783f Code cleanup. 2019-10-13 18:56:09 -07:00
7e373e12b2 Fixed max depth str length to be closer to actual range of lengths. 2019-10-13 18:43:07 -07:00
6ffe39308b Deprecated support for piping commands in to bb at startup (undocumented). Users should use xargs if they want to do that sort of thing. 2019-10-13 18:41:48 -07:00
999c60c099 Added support for shift-home and shift-end, as well as a default binding
to +spread using them.
2019-10-13 18:34:55 -07:00
e40feed849 Cleaned up the command parsing code a bit to be slightly more correct
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-13 18:33:46 -07:00
e2152a57a3 Renamed Super->Meta for correctness and demagicified a magic number. 2019-10-12 16:09:07 -07:00
9e4e0ee314 verhaul of terminal keypress handling and labeling to support more
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-12 16:04:19 -07:00
e9c75a7837 Use tput cvvis and tput civis for cursor visibility and fix for >
shell mode not showing cursor.
2019-10-11 19:07:05 -07:00
4cc2bd59c3 Shortened loop to find bindings. 2019-10-09 17:28:59 -07:00
9a1599e728 Moved bbstartup search to a loop. 2019-10-09 15:01:50 -07:00
220d0dc402 Set default columns to what the startup commands were doing by default,
so that's no longer needed in the startup commands.
2019-10-08 19:30:37 -07:00
c4620ece60 Version bump 2019-10-03 15:51:17 -07:00
7f0fcdeea4 Removed some unnecessary +refreshes, no longer enable cursor by default,
but instead have ask() etc. make the cursor visible. Also cleaned up
some of the failure cases for better feedback.
2019-10-03 14:57:34 -07:00
97bae88a1e For +deselect, allow +deselect (no colon) to mean "deselect everything"
to make it a simple command instead of +deselect: "$@"
2019-10-03 14:13:27 -07:00
68a3bbf7e2 Fix for empty files not getting detected properly 2019-10-03 13:49:38 -07:00
16877a5f4b Tidying up 2019-10-03 13:38:41 -07:00
6b63ea5d40 Added +execute (for, e.g. `bb +e:"bb +goto:$(ls | pick "Go to file:
")"`)
2019-10-03 13:35:53 -07:00
9c01fd6a37 Updated docs. 2019-10-03 13:35:42 -07:00
38497d5619 Overhaul/cleanup of command line argument parsing. Now properly handles
startup commands in the order: bbstartup.sh, bb +cmd, echo +cmd | bb
2019-10-03 13:26:31 -07:00
e364995dcd Appending '\0' to commandfile so subsequent writes don't get screwed up. 2019-10-03 13:24:52 -07:00
3de5a5108f Fix for deletion not working properly with <selection> 2019-10-03 13:21:21 -07:00
2be2c575b2 Reordering startup commands and cleaning up piped in input. 2019-10-02 13:52:44 -07:00
905783d644 Fixed ln argument ordering 2019-10-02 13:51:51 -07:00
95047f54e7 Removed unnecessary /dev/tty redirect 2019-10-02 13:41:19 -07:00
0d3d80b94d Restored binding for double left clicking a file. 2019-10-02 13:30:51 -07:00
b9cb1e34c9 Moved some variables out of global scope that weren't needed there. 2019-10-02 13:29:49 -07:00
05e37166fc Fixed 'Enter' key behavior (should work properly for mac again now) 2019-10-02 13:29:25 -07:00
e25eaf9b92 Default behavior for invalid bb commands is now to print an error
message to stdout on the default console screen and otherwise ignore it
instead of exiting.
2019-10-02 13:14:28 -07:00
f0016a2d10 Removed BB_QUIT 2019-10-02 13:08:07 -07:00
e531e1766c Added fake binding to allow '#' to bind without being parsed as a
comment
2019-10-02 12:45:44 -07:00
c7e08b884a Fix for some messed up behavior for Escape key and for passing vararg
commands to bb
2019-10-02 01:40:40 -07:00
7f402ee32a Fixed some typos in the bindings. 2019-09-30 18:02:55 -07:00
d83aac7bb1 Moved duplicate names onto same line. 2019-09-30 18:02:40 -07:00
f0e37a95f1 Fixed an issue with /etc/bb instead of /etc/xdg/bb and moved the startup
command into bb.h with the other bb shell script stuff.
2019-09-30 17:22:17 -07:00
3fd603c607 Fix for pause having both bold+faint text instead of just faint. 2019-09-30 17:08:59 -07:00
10ea5c1eb0 Updated comment. 2019-09-30 17:07:30 -07:00