I'm looking for a way to determine the filetype of a file in vim and set the syntax highlighting based on the filetype. The only catch is I cannot use the file extension for determining the filetype.
This is my scenario: I use vimdiff
or gvimdiff
as my P4DIFF
tool, which shows the changes between the files in my local copy and the ones from the perforce server. Perforce seems to bring in the files from the perforce server into the /tmp directory and uses the PID
to name the file, for example:
/tmp/tmp.24673.23
This was for a C++ source file.
The most frequent filetypes I encounter in the perforce repository are C/C++ sources and header files, Makefiles, python scripts, perl scripts, ruby scripts, and tcl scripts.
I've looked into using modeline
, but most of the sources in our tree do not have this information embedded in the file.
This post mentions about a possible approach to search and identify a magic pattern. I could not find any consistent magic pattern that I could get a high success rate with.
Tried using the file
binary on my linux box to see what results I get. It seems to identify C/C++ sources well, but fails for Makefiles and even python scripts (which don't have the hashbang)
One good thing is that, among the 2 files that are compared, the file on the right is from my local copy and hence has the correct file name with extension, thereby syntax highlighting is enabled correctly for the file on the right.
Is there a way I could leverage this to set the same syntax highlighting for the file displayed on the left ?
Any alternate solutions to this problem are also welcome.
This was an interesting puzzle. :)
aug SmartDiffType
au!
au VimEnter * :if &diff && len(&ft) | call setwinvar(2/winnr(),'&ft',&ft) | elseif &diff | let &ft=getwinvar(2/winnr(),'&ft') | endif
aug END
Notes:
au VimEnter
line, but it is generally a good practice to put autocommands in some autocommand group with a reset (au!
) at the top.VimEnter
because otherwise diff
or the windows are not properly intialized yetvimdiff
might have been triggered with the old file on the right or the left of the split, so we consider both cases. 2/winnr()
is a math trick to flip between 1 and 2 (2/2 = 1, 2/1=2)Assuming that you have open only the 2 splits and the split on the left is your local file you can do the following
:windo let &ft = getwinvar(1, '&ft')
This will set the filetype
to the value of the top left most window for all windows.
For more help see:
:h :windo
:h 'ft'
:h getwinvar(
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With