I have some files with .core extension. They are regular yaml files, however they must have different extension in file names. How can I make kakoune to load highlighting rules defined for yaml file each time I open file with .core extension?
Hello
You could try the following hook (to be declared in your kakrc)
hook global BufCreate '.*\.core' %{ set-option buffer filetype yaml }
Most helpful comment
Hello
You could try the following hook (to be declared in your kakrc)