cleanup
This commit is contained in:
parent
94008569ec
commit
cffa274b7b
7 changed files with 39 additions and 33 deletions
|
|
@ -218,7 +218,13 @@ $env.config = {
|
|||
env_change: {
|
||||
PWD: [{|before, after| null }] # run if the PWD environment is different since the last repl input
|
||||
}
|
||||
display_output: { table } # run before the output of a command is drawn, example: `{ if (term size).columns >= 100 { table -e } else { table } }`
|
||||
display_output: {
|
||||
if (term size).columns >= 80 {
|
||||
table -e
|
||||
} else {
|
||||
table
|
||||
}
|
||||
}
|
||||
command_not_found: { null } # return an error message when a command is not found
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -35,8 +35,8 @@
|
|||
j = "move_line_up";
|
||||
};
|
||||
keys.select = {
|
||||
k = "move_line_down";
|
||||
j = "move_line_up";
|
||||
k = "extend_line_down";
|
||||
j = "extend_line_up";
|
||||
};
|
||||
};
|
||||
languages = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue