AutoYADM commit: 2025-06-13 14:22:37
This commit is contained in:
parent
30d07da785
commit
df8b63a78f
2 changed files with 12 additions and 5 deletions
|
@ -63,7 +63,7 @@ proc_sorting = "memory"
|
||||||
proc_reversed = False
|
proc_reversed = False
|
||||||
|
|
||||||
#* Show processes as a tree.
|
#* Show processes as a tree.
|
||||||
proc_tree = False
|
proc_tree = True
|
||||||
|
|
||||||
#* Use the cpu graph colors in the process list.
|
#* Use the cpu graph colors in the process list.
|
||||||
proc_colors = True
|
proc_colors = True
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
# http://editorconfig.org/#file-format-details
|
# http://editorconfig.org/#file-format-details
|
||||||
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
|
# Patch by Daniel <daniel@ficd.ca>:
|
||||||
|
# Support editorconfig for scratch buffers.
|
||||||
|
# If we're in a scratch buffer, we check the filetype,
|
||||||
|
# create a temp file with the appropriate extension, and pass
|
||||||
|
# it to editorconfig. If there's no .editorconfig in /tmp,
|
||||||
|
# we copy the one from $HOME. We clean up the files after.
|
||||||
|
|
||||||
# Detection
|
# Detection
|
||||||
# ‾‾‾‾‾‾‾‾‾
|
# ‾‾‾‾‾‾‾‾‾
|
||||||
|
|
||||||
|
@ -90,10 +97,10 @@ define-command editorconfig-load -params ..1 -docstring "editorconfig-load [file
|
||||||
}
|
}
|
||||||
' ;;
|
' ;;
|
||||||
esac
|
esac
|
||||||
# if [ -n "$scratch" ]; then
|
if [ -n "$scratch" ]; then
|
||||||
# rm "/tmp/.editorconfig"
|
rm "/tmp/.editorconfig"
|
||||||
# rm "$file"
|
rm "$file"
|
||||||
# fi
|
fi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
complete-command editorconfig-load file
|
complete-command editorconfig-load file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue