summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-11-10Add support for embedded sh commandsHEADmaincos
2023-11-02Adapt to findings from preseed.debian.netcos
* Comment on questions not meeting the syntax. * Add period `.` as allowed character when matching fields, as those are actively used in question namnes. After fetching all files from preseed.debian.net, the following: ``` cat **/* | sed -n 's/#\s*d-i\s*\([^ ]\+\).*/\1/p' | grep -v '^\([[:alnum:]._-]\+/\)\+[[:alnum:]._-]\+$' ``` returns only the documented anomaly.
2023-10-15Fix addition of snapshot file to archivecos
2023-10-15Update documentationcos
2023-10-15Make plugin work better with 'compatible'cos
While breaking long lines is preferred to make text readable, the existance of the line contination characters spewed red E10 errors when testing the script in an environment without 'nocompatible' set.
2023-10-14Add ':help preseed.txt' documentationcos
2023-10-14Move plugin from ftplugin/ to syntax/ foldercos
Thanks to bauen1 on #debian-boot for pointing out that the original location does not always work. Specifically loading with vim-plug was problematic. The syntax/ folder seems like a more appropriate place anyways. Investigating the cause a bit more; It appears that even though it is claimed at https://github.com/junegunn/vim-plug that `call plug#end()` should do `syntax enable` and `filetype plugin indent`, adding that exact `syntax enable` at the top of .vimrc makes loading from ftplugin/ work with vim-plug. Loading from syntax/ works with vim-plug also without the seemingly, but actually not, superfluous duplication of `syntax enable`.
2023-10-13Initial commitcos