Sorted file-completion by attributes #653
|
Hello and thanks again for a totally underrated project! Lines 1880 to 1897 in 2f564e6 I'm wondering if there's a way to override file-completion and sort it by say created, modified? Maybe its already possible? I've been surprised so many times how complete it is! |
Replies: 1 comment 3 replies
There are two completion generations for filenames. One is
|
When
context=filenameis specified, ble.sh doesn't use external completion settings and only uses ble.sh's built-in filename generation.The TAB/menu completion (without specifying
context) by default uses external completion settings (if any are set by thecompletebuiltin), and falls back toble.sh's built-in filename generation only when external completion settings are not found. Your observation implies that you have external completion settings such asbash-completion, which override ble.sh's built-in completion generation for filenam…