if ext != "py"
!rm -f %[co]
endif
- if executable(expand('%:p')) || !executable('chmod')
- return
- endif
if getline(1) =~ "^#!"
- !chmod +x %
- if v:shell_error
- echoerr 'Cannot make file executable: ' . v:shell_error
- endif
+ call SetExecutableBit(1)
endif
endif
endfunction
endif
+" From Tip 212:
+" http://vim.wikia.com/wiki/Setting_file_attributes_without_reloading_a_buffer
+
+function! SetExecutableBit(x)
+ if !executable('chmod')
+ return
+ endif
+ checktime
+ let fname = expand("%:p")
+ execute "au FileChangedShell " . fname . " :echo"
+ if a:x
+ silent !chmod a+x %
+ else
+ silent !chmod a-x %
+ endif
+ if v:shell_error
+ echoerr 'Error running chmod: ' . v:shell_error
+ endif
+ checktime
+ execute "au! FileChangedShell " . fname
+endfunction
+command! Xbit if executable(expand("%:p")) | call SetExecutableBit(0) | else | call SetExecutableBit(1) | endif
+
" ----------
" From http://slobin.pp.ru/vim/_vimrc.html