bmallred vor 10 Jahren
Commit
433a6e7a17
8 geänderte Dateien mit 147 neuen und 0 gelöschten Zeilen
  1. 1 0
      .gitignore
  2. 0 0
      README.md
  3. 6 0
      addon-info.json
  4. 43 0
      autoload/vs/tool.vim
  5. 25 0
      compiler/vs.vim
  6. 18 0
      ftdetect/vsfiletype.vim
  7. 15 0
      ftplugin/vs.vim
  8. 39 0
      plugin/vs.vim

+ 1 - 0
.gitignore

@ -0,0 +1 @@
1
doc/tags

+ 0 - 0
README.md


+ 6 - 0
addon-info.json

@ -0,0 +1,6 @@
1
{
2
    "name": "vim-visualstudio",
3
    "description": "",
4
    "author": "Bryan Allred <bryan@revolvingcow.com>",
5
    "repository": {"type": "git", "url": "https://code.revolvingcow.com/bmallred/vim-visualstudio.git"}
6
}

+ 43 - 0
autoload/vs/tool.vim

@ -0,0 +1,43 @@
1
function! s:get_browser_command()
2
    let vs_play_browser_command = get(g:, 'vs_play_browser_command', '')
3
    if vs_play_browser_command == ''
4
        if IsWin()
5
            let vs_play_browser_command = '!start rundll32 url.dll,FileProtocolHandler %URL%'
6
        elseif has('mac') || has('maxunix') || has('gui_macvim') || system('uname') =~? '^darwin'
7
            let vs_play_browser_command = 'open %URL%'
8
        elseif executable('xdg-open')
9
            let vs_play_browser_command = 'xdg-open %URL%'
10
        elseif executable('firefox')
11
            let vs_play_browser_command = 'firefox %URL%'
12
        else
13
            let vs_play_browser_command = ''
14
        endif
15
    endif
16
17
    return vs_play_browser_command
18
endfunction
19
20
function! vs#OpenBrowser(url)
21
    let cmd = s:get_browser_command()
22
    if len(cmd) == 0
23
        redraw
24
        echohl WarningMsg
25
        echo "No browser detected. Please open the URL below."
26
        echohl None
27
        echo a:url
28
        return
29
    endif
30
31
    if cmd =~ '^!'
32
        let cmd = substitute(cmd, '%URL%', '\=shellescape(a:url)', 'g')
33
        silent! exec cmd
34
    elseif cmd =~ '^:[A-Z]'
35
        let cmd = substitute(cmd, '%URL%', '\=a:url', 'g')
36
        exec cmd
37
    else
38
        let cmd = substitute(cmd, '%URL%', '\=shellescape(a:url)', 'g')
39
        call system(cmd)
40
    endif
41
endfunction
42
43
" vim:ts=4:sw=4:et

+ 25 - 0
compiler/vs.vim

@ -0,0 +1,25 @@
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

+ 18 - 0
ftdetect/vsfiletype.vim

@ -0,0 +1,18 @@
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
8
    setlocal filetype=vs
9
endfunction
10
11
function! s:vsfiletype_post()
12
    let &g:fileformats = s:current_fileformats
13
    let &g:fileencodings = s:current_fileencodings
14
endfunction
15
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()

+ 15 - 0
ftplugin/vs.vim

@ -0,0 +1,15 @@
1
if exists("b:did_ftplugin")
2
    finish
3
endif
4
5
let b:did_ftplugin = 1
6
let b:undo_ftplugin = "setl fo< com< cms<"
7
8
setlocal formatoptions-=t
9
setlocal comments=s1:/*,mb:*,ex:*/,://
10
setlocal commentstring=//\ %s
11
setlocal noexpandtab
12
13
compiler vs
14
15
" vim:ts=4:sw=4:et

+ 39 - 0
plugin/vs.vim

@ -0,0 +1,39 @@
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