b9346fb3feChanged sorting to support '~' meaning toggle current direction.Bruce Hill2019-09-21 21:17:21 -0700
a6576261dfTweaked code for PICK() and the code that asks for 1 character of input for better POSIX sh compatibility and to remove unused vars.Bruce Hill2019-09-21 21:16:33 -0700
149056033aAdded support for default shell other than sh (e.g. dash, in case sh links to bash)Bruce Hill2019-09-21 21:14:59 -0700
a50e439b42Some tweaks to how the help menu displays bindings and added BBSHELLFUNC for allowing the bb function to be used in the ':' and '|' bindingsBruce Hill2019-09-21 18:05:13 -0700
23bed00467Fix for weird terminal behavior (e.g. not echoing user input for 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.Bruce Hill2019-09-21 16:38:53 -0700
65fc83070bAdded backspace key for going to prev directory (instead of just '-')Bruce Hill2019-09-21 16:38:27 -0700
f0aa30eb3fAdded support for CSI Ps P -> Delete keyBruce Hill2019-09-21 15:50:50 -0700
ba7b44a3e7Fix for broken behavior in the help menu (hanging when reaching the end, due to not close()ing the file descriptor, and exiting on ctrl-c)Bruce Hill2019-09-21 13:40:35 -0700
e04c9d945cTweaks to how spinning and confirmation workBruce Hill2019-09-21 13:19:21 -0700
6b3649bbf4Improved confirmations and cleaned up the marks system a bit.Bruce Hill2019-09-15 18:02:36 -0700
4c6f0b118fBetter handling for interrupts during markBruce Hill2019-09-12 18:51:58 -0700
e1e34bc6edReplaced marks system with something a little more elegant using 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.Bruce Hill2019-09-12 18:41:15 -0700
88514eda09When choosing sorting, immediately select method on first keystroke.Bruce Hill2019-09-07 21:51:59 -0700
fed64cc4aaDon't copy files if none are selected.Bruce Hill2019-09-07 21:51:40 -0700
52a2b30692Fixed mistake in bb function conditionalBruce Hill2019-09-07 21:47:22 -0700
1da8fd2660Fixed check for empty string in prefixes and stuffBruce Hill2019-09-07 21:47:05 -0700
d280bcfe3fMerge branch 'master' of bitbucket.org:spilt/bbBruce Hill2019-07-24 23:46:33 -0700
f3da7c1f32Replaced bashism "[[" with "test -n"Bruce Hill2019-07-24 23:46:14 -0700
47f66e49a7Added fallback for if binding has no description.Bruce Hill2019-07-12 16:24:27 -0700
da6bb91763Overhaul to use a shell function for internal commands instead of bb itself, which lets bb work when not yet installed.Bruce Hill2019-07-12 16:19:31 -0700
f5c07a5a70Removed some remnants of the 'select:*' API and executing files with the executable bit setBruce Hill2019-06-30 01:24:47 -0700
d1316413e1Added some missing escape sequencesBruce Hill2019-06-30 01:23:54 -0700
61cf1bf90cFixed issue with extra '/' appearing in link pathsBruce Hill2019-06-19 16:45:10 -0700
ac29ef42cfFixed some path normalization errors with ".." and simplified the populate_files code a bitBruce Hill2019-06-15 19:05:57 -0700
f2298a5786Condensed selection code by converting select_entry()/deselect_entry() to set_selected() with an argument for whether the file should be selected.Bruce Hill2019-06-15 18:21:37 -0700
4c717185deCleaned up and deduplicated some of the path normalization code.Bruce Hill2019-06-15 18:13:44 -0700
302ed33d9cSorted function declarations alphabetically, got rid of clear_selection (now just inlined), and replaced remove_entry() with try_free_entry() to eliminate duplicate safety checks.Bruce Hill2019-06-15 18:02:14 -0700
18ea9b0350Silenced some error messages from whichBruce Hill2019-06-15 17:43:55 -0700
ff800b2377Allow piping in commands when launching bb (e.g. printf '+sel:%s\0' * | bb)Bruce Hill2019-06-15 16:21:50 -0700
f372995750Fix for normalizing paths better, particularly for places other than cd_to_path and for non-directory paths (e.g. +sel:../foo.txt)Bruce Hill2019-06-15 16:20:38 -0700
b91dbdd3d0Added $BBDOTFILES, and updated bindings to use it properly. Removed the +select:* and +deselect:* in favor of just using shell commands for those functions.Bruce Hill2019-06-15 14:14:05 -0700
45a08afbbdAdded +bind command to allow for stuff like bb +"b:\r:echo \$BBCURSOR && bb +q"Bruce Hill2019-06-15 14:13:35 -0700
1239060641Fix for free-after-use caused by hardlinked files (reverting earlier change that assumed files with equal inode/idev were the same)Bruce Hill2019-06-15 14:07:46 -0700
5b1344db44Fix for ALTSCREEN getting broken by CTRL-ZBruce Hill2019-06-15 14:02:32 -0700
3614df7450More robust/automatic handling of PICKERBruce Hill2019-06-15 13:52:32 -0700
8000a4a1bbRenamed command->script in more places to avoid confusion.Bruce Hill2019-06-12 18:55:55 -0700
bd06e6c99aImproved some names (process command/run script) and changed quit to use a flag on bb_t instead of a return value.Bruce Hill2019-06-12 18:52:10 -0700
0fe25dddb6Wrapped SPIN() around more of 'M' commandBruce Hill2019-06-12 18:15:34 -0700
87c462a63dTweaked to allow setting optimization level more easilyBruce Hill2019-06-12 17:55:20 -0700
4bac1a740aCleaned up commands a bit and changes 'P' from using grep for patterns to select to 'S' to use shell globbingBruce Hill2019-06-12 16:57:07 -0700
69955d3808Switched some stuff to use $() instead of `` for better composing, rearranged things a bit to launch bb fewer times for commands.Bruce Hill2019-06-12 15:11:29 -0700
85a4be481bReverted change to move cursor up 1 line with builtin pickBruce Hill2019-06-11 17:38:24 -0700
5a5f9afa05Updated with some cleaner behavior for PICK and added SPIN. Also removed command line flags in favor of manually using tput rmcup. Updated the documentation.Bruce Hill2019-06-10 20:37:34 -0700
86c8bed803Better pausing and break points for commandsBruce Hill2019-06-09 16:15:17 -0700
399b63f57cFix for being unable to deselect nonexistant filesBruce Hill2019-06-09 15:46:34 -0700
f2151f7835Merge branch 'master' of bitbucket.org:spilt/bbBruce Hill2019-06-08 20:54:25 -0700
5d660e2378Added -r flag for cp for copying dirsBruce Hill2019-06-08 20:53:36 -0700
257f8ee0d0Fix for top level '/' dir edge casesBruce Hill2019-06-06 23:28:03 -0700
76f1cd816bRemoved some unnecessary +refreshes and just set the dirty bit to 1 whenever an external program runs so the screen redraws without necessarily refreshing the file listing.Bruce Hill2019-06-06 18:13:13 -0700
069415a78bReworked a bunch of the config option stuff for picking files and user input. Now that stuff is handled with makefile flags.Bruce Hill2019-06-06 18:10:14 -0700
380f2a8ab0Removed code for move cursor to position (unused)Bruce Hill2019-06-06 18:09:33 -0700
2c56bd34d7Removed QUOTE() and cleaned up some of the macros for FUZZY and ASKBruce Hill2019-06-06 16:45:31 -0700
47019164a5Fixed some wrap/cursor visibility issuesBruce Hill2019-06-06 15:37:26 -0700
32b414e555Removed breadline() and switched to use ask when possible, defaulting to read and fzyBruce Hill2019-06-06 15:33:20 -0700
2db997c9e0Fixed issue with non-NORMAL_TERM commands that set and reset alt screen, and fixed issue with "(n) selected" messageBruce Hill2019-06-04 14:05:14 -0700
a667c09452Merge branch 'master' of bitbucket.org:spilt/bbBruce Hill2019-05-31 21:51:29 -0700
888f859e97Improved the randomization a bit, so the numbers are evenly distributed [0,n) instead of [0, RAND_MAX), also cleaned up config file a littleBruce Hill2019-05-31 21:49:42 -0700
b6fa5777c8Improved the randomization a bit, so the numbers are evenly distributed [0,n) instead of [0, RAND_MAX)Bruce Hill2019-05-31 21:49:42 -0700