]> git.phdru.name Git - dotfiles.git/blobdiff - .vimrc
.fvwmrc: Open mpv a bit to the left to allow bigger initial window
[dotfiles.git] / .vimrc
diff --git a/.vimrc b/.vimrc
index 1620a5d40ad0b78cd52e498f9a6807d38dbfce5e..4a8453c2a933a4e2556258ec41bff049a290f2b2 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -44,7 +44,9 @@ set whichwrap=b,s,h,l,<,>,[,],~ " Wrap to the previous/next line on all keys and
 set display=lastline,uhex " Show the last line instead of '@'; show non-printable chars as <hex>
 set lazyredraw    " Do not update screen while executing macros
 set list          " listchars only works with 'list'
-set listchars=tab:>_,trail:_,extends:+ " Show tabs, trailing spaces, long lines
+" Show tabs, non-breaking/trailing spaces, long lines
+set listchars=tab:>_,nbsp:_,trail:_,extends:+,precedes:+
+" Another usefull additions: eol:$,space:_
 set wrap          " Visually wrap long lines
 
 " With 'set wrap' wrap long lines at a character in 'breakat'
@@ -589,19 +591,21 @@ endif
 if executable('chmod')
    function! SetExecutableBit(x)
       checktime
-      let fname = expand("%:p")
-      let fx = executable(fname)
-      execute "au FileChangedShell " . fname . " :echo"
+      " Avoid 'Reload Y/N?' question
+      autocmd FileChangedShell <buffer> call _BufChangedCB()
+      let fx = executable(expand("%:p"))
       if a:x && !fx
-         !chmod a+x %
+         silent !chmod a+x %
       elseif !a:x && fx
-         !chmod a-x %
+         silent !chmod a-x %
       endif
       if v:shell_error
          echoerr 'Error running chmod: ' . v:shell_error
       endif
       checktime
-      execute "au! FileChangedShell " . fname
+   endfunction
+   function! _BufChangedCB()
+      autocmd! FileChangedShell <buffer>
    endfunction
    command! ToggleXbit if executable(expand("%:p")) | call SetExecutableBit(0) | else | call SetExecutableBit(1) | endif
 endif