# HG changeset patch # User Steve Losh # Date 1533123644 0 # Node ID c1a1eef2ea4e639e77ead654b0c74007d38b4300 # Parent e62e57d21745580820d1576b096a84a8c8e26f47 Switch to redact-pass diff -r e62e57d21745 -r c1a1eef2ea4e bin/eq --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/eq Wed Aug 01 11:40:44 2018 +0000 @@ -0,0 +1,14 @@ +#!/bin/sh + +# if you don't have the script's cwd set, you get XML errors +export WINEPREFIX=$HOME/.wine/ + +cd ~/.wine/drive_c/Program\ Files/Sony/EverQuest + +# Bind to one core of the processor and launch. +# The client will spew a lot of errors, especially every time +# you target a mob, hence the stdout/stderr redirect. +# You probably want to leave off the 2>/dev/null until you're satisfied +# everything is working. +# taskset -c 0 padsp wine eqgame.exe patchme 2>/dev/null +taskset -c 0 padsp wine eqgame.exe patchme diff -r e62e57d21745 -r c1a1eef2ea4e vim/bundle/redact-pass/doc/redact_pass.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vim/bundle/redact-pass/doc/redact_pass.txt Wed Aug 01 11:40:44 2018 +0000 @@ -0,0 +1,1 @@ +/home/sjl/src/password-store/contrib/vim/redact_pass.txt \ No newline at end of file diff -r e62e57d21745 -r c1a1eef2ea4e vim/bundle/redact-pass/plugin/redact_pass.vim --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vim/bundle/redact-pass/plugin/redact_pass.vim Wed Aug 01 11:40:44 2018 +0000 @@ -0,0 +1,1 @@ +/home/sjl/src/password-store/contrib/vim/redact_pass.vim \ No newline at end of file diff -r e62e57d21745 -r c1a1eef2ea4e vim/vimrc --- a/vim/vimrc Thu Jul 26 15:17:30 2018 +0000 +++ b/vim/vimrc Wed Aug 01 11:40:44 2018 +0000 @@ -2268,57 +2268,6 @@ endfunction " }}} -" Pass {{{ - -" https://github.com/milki/password-store/blob/master/contrib/vim/noplaintext.vim -" -" Prevent various Vim features from keeping the contents of pass(1) password -" files (or any other purely temporary files) in plaintext on the system. -" -" Either append this to the end of your .vimrc, or install it as a plugin with -" a plugin manager like Tim Pope's Pathogen. -" -" Author: Tom Ryder -" - -" Don't backup files in temp directories or shm -if exists('&backupskip') - set backupskip+=/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/* -endif - -" Don't keep swap files in temp directories or shm -if has('autocmd') - augroup swapskip - autocmd! - silent! autocmd BufNewFile,BufReadPre - \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/* - \ setlocal noswapfile - augroup END -endif - -" Don't keep undo files in temp directories or shm -if has('persistent_undo') && has('autocmd') - augroup undoskip - autocmd! - silent! autocmd BufWritePre - \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/* - \ setlocal noundofile - augroup END -endif - -" Don't keep viminfo for files in temp directories or shm -if has('viminfo') - if has('autocmd') - augroup viminfoskip - autocmd! - silent! autocmd BufNewFile,BufReadPre - \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/* - \ setlocal viminfo= - augroup END - endif -endif - -" }}} " Python-Mode {{{ let g:pymode_doc = 1