diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-05-26 02:37:41 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-05-26 02:37:41 -0700 |
| commit | 3579e90a5b14790bb4c32f4d65df53b9470102aa (patch) | |
| tree | 16429a3eaea129b0a7034dec8c27bf4b6637e954 /config.def.h | |
| parent | d00596ca44cc1a62f6280d275fe6a946c7beb7a0 (diff) | |
Made some fixes after testing on linux, changed +mark syntax to use '='
instead of ';'
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 722c6c7..e8b1561 100644 --- a/config.def.h +++ b/config.def.h @@ -28,7 +28,7 @@ dots[:yes|:no] Toggle whether dotfiles are visible goto:<filename> Move the cursor to <filename> (changing directory if needed) jump:<key> Jump to the mark associated with <key> - mark:<key>[;<path>] Associate <key> with <path> (or current dir, if blank) + mark:<key>[=<path>] Associate <key> with <path> (or current dir, if blank) move:<num*> Move the cursor a numeric amount quit Quit bb refresh Refresh the file listing @@ -74,8 +74,8 @@ const char *startupcmds[] = { // User-defined startup commands can go here ////////////////////////////////////////////// // Set some default marks: - "+mark:0", "+mark:~;~", "+mark:h;~", "+mark:/;/", "+mark:c;~/.config", - "+mark:l;~/.local", + "+mark:0", "+mark:~=~", "+mark:h=~", "+mark:/=/", "+mark:c=~/.config", + "+mark:l=~/.local", // Default column and sorting options: "+columns:smpn", "+sort:n", NULL, // NULL-terminated array |
