aboutsummaryrefslogtreecommitdiff
path: root/.vim/autoload/neomake/makers/ft/cuda.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/autoload/neomake/makers/ft/cuda.vim')
-rw-r--r--.vim/autoload/neomake/makers/ft/cuda.vim15
1 files changed, 0 insertions, 15 deletions
diff --git a/.vim/autoload/neomake/makers/ft/cuda.vim b/.vim/autoload/neomake/makers/ft/cuda.vim
deleted file mode 100644
index 0fbf6c9..0000000
--- a/.vim/autoload/neomake/makers/ft/cuda.vim
+++ /dev/null
@@ -1,15 +0,0 @@
-" vim: ts=4 sw=4 et
-
-function! neomake#makers#ft#cuda#EnabledMakers() abort
- return ['nvcc']
-endfunction
-
-function! neomake#makers#ft#cuda#nvcc() abort
- return {
- \ 'exe': 'nvcc',
- \ 'errorformat':
- \ '%f\(%l\): %trror: %m,'.
- \ '%f\(%l\): %tarning: %m,'.
- \ '%f\(%l\): %m',
- \ }
-endfunction