aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/python.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftdetect/python.vim')
-rw-r--r--vim/ftdetect/python.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/ftdetect/python.vim b/vim/ftdetect/python.vim
deleted file mode 100644
index 5c4a4a6f..00000000
--- a/vim/ftdetect/python.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" Python files
-autocmd BufNewFile,BufRead
- \ *.py
- \ setfiletype python
-autocmd BufNewFile,BufRead
- \ *
- \ if getline(1) =~# '\m^#!.*\<python[23]\?\>'
- \ | setfiletype python
- \ | endif