Quellcode durchsuchen

working well enough. need to prune dead code and possibly reorganize

bmallred vor 10 Jahren
Ursprung
Commit
64fb2ca03a
7 geänderte Dateien mit 87 neuen und 80 gelöschten Zeilen
  1. 20 0
      autoload/vs/cmd.vim
  2. 11 0
      autoload/vs/doc.vim
  3. 0 25
      compiler/vs.vim
  4. 49 14
      ftdetect/vsfiletype.vim
  5. 0 2
      ftplugin/vs.vim
  6. 7 0
      ftplugin/vs/commands.vim
  7. 0 39
      plugin/vs.vim

+ 20 - 0
autoload/vs/cmd.vim

@ -0,0 +1,20 @@
1
if !exists("g:vs_jump_to_error")
2
    let g:vs_jump_to_error = 1
3
endif
4
5
function! vs#cmd#Build(bang,...)
6
    echon "vim-vs: " | echohl Identifier | echon "building..." | echohl None
7
    silent! exe 'make!'
8
    redraw!
9
    if !a:bang
10
        cwindow
11
        let errors = getqflist()
12
        if !empty(errors)
13
            if g:vs_jump_to_error
14
                cc 1
15
            endif
16
        else
17
            redraws! | echon "vim-vs: " | echohl Function | echon "[build] SUCCESS" | echohl None
18
        endif
19
    endif
20
endfunction

+ 11 - 0
autoload/vs/doc.vim

@ -0,0 +1,11 @@
1
let s:buf_nr = -1
2
3
function! vs#doc#OpenBrowser()
4
    let q = expand("<cword>")
5
    if empty(q)
6
        return
7
    endif
8
9
    let url = "https://www.google.com/search?q=.NET%20" . q
10
    call go#tool#OpenBrowser(url)
11
endfunction

+ 0 - 25
compiler/vs.vim

@ -1,25 +0,0 @@
1
if exists("current_compiler")
2
    finish
3
endif
4
5
let current_compiler = "vs"
6
7
if exists(":CompilerSet") != 2
8
    command -nargs=* CompilerSet setlocal <args>
9
endif
10
11
let s:save_cpo = &cpo
12
set cpo-=C
13
14
if filereadable("makefile") || filereadable("Makefile")
15
    CompilerSet makeprg=make
16
else
17
    CompilerSet makeprg=msbuild.exe
18
endif
19
20
CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m
21
22
let &cpo = s:save_cpo
23
unlet s:save_cpo
24
25
" vim:ts=4:sw=4:et

+ 49 - 14
ftdetect/vsfiletype.vim

@ -1,18 +1,53 @@
1
let s:current_fileformats = ''
2
let s:current_fileencodings = ''
3
4
function! s:vsfiletype_pre()
5
    let s:current_fileformats = &g:fileformats
6
    let s:current_fileencodings = &g:fileencodings
7
    set fileencodings=utf-8 fileformats=unix
1
function! s:vsfiletype(s)
2
    set fileencodings=utf-8
3
    set fileformats=unix,dos
8 4
    setlocal filetype=vs
9
endfunction
10 5
11
function! s:vsfiletype_post()
12
    let &g:fileformats = s:current_fileformats
13
    let &g:fileencodings = s:current_fileencodings
6
    " Set the syntax
7
    exec 'setlocal syntax=' . a:s
8
9
    " Assign how to build the damn thing
10
    if filereadable("makefile") || filereadable("Makefile")
11
        setlocal makeprg=make
12
        setlocal errorformat=%f(%l\\\,%c):\ %m
13
    else
14
        compiler msbuild
15
    endif
16
17
    " Set the appropriate tagbar type
18
    if a:s == "cs"
19
        let g:tagbar_type_vs = {
20
            \ 'kinds' : [
21
                \ 'd:macros:1:0',
22
                \ 'f:fields',
23
                \ 'g:enums',
24
                \ 'e:enumerators:0:0',
25
                \ 't:typedefs',
26
                \ 'n:namespaces',
27
                \ 'i:interfaces',
28
                \ 'c:classes',
29
                \ 's:structs',
30
                \ 'E:events',
31
                \ 'm:methods',
32
                \ 'p:properties',
33
            \ ],
34
        \ }
35
    elseif a:s == "html"
36
        let g:tagbar_type_vs = {
37
            \ 'kinds' : [
38
                \ 'f:JavaScript funtions',
39
                \ 'a:named anchors',
40
            \ ],
41
        \ }
42
    endif
43
14 44
endfunction
15 45
16
au BufNewFile   *.cs,*.csproj,*.vb,*.vbproj,*.sln,*.aspx setlocal filetype=vs fileencoding=utf-8 fileformat=unix
17
au BufRead      *.cs,*.csproj,*.vb,*.vbproj,*.sln,*.aspx call s:vsfiletype_pre()
18
au BufReadPost  *.cs,*.csproj,*.vb,*.vbproj,*.sln,*.aspx call s:vsfiletype_post()
46
" Associate to common file formats
47
augroup filedetect
48
    au! BufNewFile,BufRead *.cs                                         call s:vsfiletype("cs")
49
    au! BufNewFile,BufRead *.vb                                         call s:vsfiletype("vb")
50
    au! BufNewFile,BufRead *.csproj,*.csproj,*.vbproj,*.vbproj.user     call s:vsfiletype("xml")
51
    au! BufNewFile,BufRead *.sln                                        call s:vsfiletype("xml")
52
    au! BufNewFile,BufRead *.aspx,*.cshtml,*.vbhtml                     call s:vsfiletype("html")
53
augroup END

+ 0 - 2
ftplugin/vs.vim

@ -10,6 +10,4 @@ setlocal comments=s1:/*,mb:*,ex:*/,://
10 10
setlocal commentstring=//\ %s
11 11
setlocal noexpandtab
12 12
13
compiler vs
14
15 13
" vim:ts=4:sw=4:et

+ 7 - 0
ftplugin/vs/commands.vim

@ -0,0 +1,7 @@
1
if exists("g:vs_loaded_commands")
2
    finish
3
endif
4
let g:vs_loaded_commands = 1
5
6
nnoremap <silent> <Plug>(vs-build) :<C-u>call vs#cmd#Build('')<CR>
7
nnoremap <silent> <Plug>(vs-doc) :<C-u>call vs#doc#OpenBrowser()<CR>

+ 0 - 39
plugin/vs.vim

@ -1,39 +0,0 @@
1
if exists("g:vs_loaded_install")
2
    finish
3
endif
4
let g:vs_loaded_install = 1
5
6
function! LineEnding()
7
    if &fileformat == 'dos'
8
        return "\r\n"
9
    elseif &fileformat == 'mac'
10
        return "\r"
11
    endif
12
13
    return "\n"
14
endfunction
15
16
function! IsWin()
17
    let win = ['win16', 'win32', 'win32unix', 'win64', 'win95']
18
    for w in win
19
        if (has(w))
20
            return 1
21
        endif
22
    endfor
23
24
    return 0
25
endfunction
26
27
function! PathSep()
28
    if IsWin()
29
        return ";"
30
    endif
31
    
32
    return ":"
33
endfunction
34
35
augroup vim-vs
36
    autocmd!
37
augroup END
38
39
" vim:ts=4:sw=4:et