Removed +bind functionality.

This commit is contained in:
Bruce Hill 2019-09-12 18:56:27 -07:00
parent 4c6f0b118f
commit 651e58c9c9
2 changed files with 0 additions and 19 deletions

18
bb.c
View File

@ -975,24 +975,6 @@ bb_result_t process_cmd(bb_t *bb, const char *cmd)
populate_files(bb, 1);
return BB_OK;
}
case 'b': { // +bind:
if (!value) return BB_INVALID;
char *script = strchr(value, ':');
if (!script) return BB_INVALID;
++script;
int i;
for (i = 0; bindings[i].keys[0] > 0; i++) {
for (int j = 0; bindings[i].keys[j]; j++) {
if (bindings[i].keys[j] == *value) {
bindings[i].script = memcheck(strdup(script));
return BB_OK;
}
}
}
bindings[i].keys[0] = *value;
bindings[i].script = memcheck(strdup(script));
return BB_OK;
}
case 'c': { // +cd:, +columns:
switch (cmd[1]) {
case 'd': { // +cd:

View File

@ -27,7 +27,6 @@
.:[01] Whether to show "." in each directory
..:[01] Whether to show ".." in each directory
bind:key:script Add or modify a key binding
cd:<path> Navigate to <path>
columns:<columns> Change which columns are visible, and in what order
deselect:<filename> Deselect <filename>