You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas."$schema" = "https://yazi-rs.github.io/schemas/keymap.json"
[manager]
prepend_keymap = [
# Disable defaults
{ on = [ "g", "h" ], run = "noop" },
]
taplo keeps formatting this as the following:
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas."$schema" = "https://yazi-rs.github.io/schemas/keymap.json"
[manager]
prepend_keymap = [
# Disable defaults
{ on = [
"g",
"h",
], run = "noop" },
]
I really like how concise the previous layout is. Is there any way to tell it not do anything here?
The text was updated successfully, but these errors were encountered:
I have the following toml.
taplo keeps formatting this as the following:
I really like how concise the previous layout is. Is there any way to tell it not do anything here?
The text was updated successfully, but these errors were encountered: