summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-10-10 20:23:43 +0200
committermakefu <github@syntax-fehler.de>2015-10-10 20:23:43 +0200
commita176ee1f2fbc289a630fd643d97e764ff337461e (patch)
tree21b2b351192a9b2d15f6fea145a3e98311957254 /makefu
parentf295ac8f970ac9a2c95c33f58a057950b88c4504 (diff)
m 2 vim: edit bin via xxd
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/vim.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/makefu/2configs/vim.nix b/makefu/2configs/vim.nix
index b71d9514..02a46d22 100644
--- a/makefu/2configs/vim.nix
+++ b/makefu/2configs/vim.nix
@@ -103,6 +103,19 @@ in {
endfunction
call InitBackupDir()
+ augroup Binary
+ " edit binaries in xxd-output, xxd is part of vim
+ au!
+ au BufReadPre *.bin let &bin=1
+ au BufReadPost *.bin if &bin | %!xxd
+ au BufReadPost *.bin set ft=xxd | endif
+ au BufWritePre *.bin if &bin | %!xxd -r
+ au BufWritePre *.bin endif
+ au BufWritePost *.bin if &bin | %!xxd
+ au BufWritePost *.bin set nomod | endif
+ augroup END
+
+
'';