Re: [users] Re: Time to fight for our beloved DEB format!

2001-07-05 Thread Arthur Korn
Hi Steve Greenland schrieb: > I'd bet that very few people mess much with the default runlevels, and > I'd further bet that most who do end up with something very similar to > the LSB proposed system. On PCs I'm fine with the setup we have now, and IMO it's just as easy to rename some links in rc

Re: Editing and storing encrypted files

2000-09-07 Thread Arthur Korn
Wouter Hanegraaff schrieb: > Is something like this available? Yes vi. ;) Type what you want, then enter this in command mode: :%! gpg -ea The whole buffer is piped through gpg and encryptet to self (assuming you encrypt to self per default) and does ascii armoring (you don't need to do this).

Re: Editing and storing encrypted files

2000-09-07 Thread Arthur Korn
Hello. I've played a bit with autocommands in vim (the first time ever I looked at them), and came up with this (shamelessly stolen from the default vimrc, there it handles *.bz2): augroup encrypted au! autocmd BufReadPre,FileReadPre*.gpg set bin autocmd BufReadPre,FileReadPr