Dont call mars if not installedDont call mars if not installedDont call
mars if not installedDont call mars if not installedDont call mars if not installedDont call mars if not installedDont call mars if not installed
This commit is contained in:
parent
0975168f35
commit
9b4e8b9f7b
14
init.vim
14
init.vim
|
@ -57,10 +57,18 @@ set list
|
|||
set listchars=tab: ,trail:·,extends:>,precedes:<,nbsp:¬
|
||||
" Remove trailing spaces
|
||||
autocmd BufWritePre * :%s/\s\+$//e
|
||||
|
||||
" Compile on F12
|
||||
nnoremap <silent><F12> :wa \| !make-client.py<CR>
|
||||
inoremap <silent><F12> <C-O>:wa \|!make-client.py<CR>
|
||||
vnoremap <silent><F12> :wa \|!make-client.py<CR>
|
||||
if executable('mars')
|
||||
nnoremap <silent><F12> :wa \| !mars<CR>
|
||||
inoremap <silent><F12> <C-O>:wa \|!mars<CR>
|
||||
vnoremap <silent><F12> :wa \|!mars<CR>
|
||||
elseif executable('make')
|
||||
nnoremap <silent><F12> :wa \| !make<CR>
|
||||
inoremap <silent><F12> <C-O>:wa \|!make<CR>
|
||||
vnoremap <silent><F12> :wa \|!make<CR>
|
||||
endif
|
||||
|
||||
" Escape on F1
|
||||
map <F1> <Esc>
|
||||
imap <F1> <Esc>
|
||||
|
|
Loading…
Reference in New Issue