:Как изменить `префикс:`(командной строки )на префикс `; `в tmux?

Использование Миллера(https://github.com/johnkerl/miller)и запуск

 mlr --c2n merge-fields -a max -r "^[a-z]" -o value -k  then put '
  for (key, value in $*) {
    if (value == $value_max && key != "value_max") {
        $fieldName=key;
    }
}' then cut -f fieldName,value_max then reorder -f fieldName,value_max input.csv

у вас будет

col4 6
col1 4
col2 2
col3 7

0
13.12.2020, 05:39
1 ответ

Я понял это с помощью Орландоколлинза

добавьте это в свой.tmux.conf и переключите привязки клавиш.

# tmux prompt key 
unbind ';'
unbind ':'
bind-key ';' command-prompt
bind-key : last-pane

1
18.03.2021, 22:56

Теги

Похожие вопросы