Eric Boehs
Eric Boehs
I knew if I watched this thread long enough I'd find the answer. Thanks @Thomascountz! I've [added the relevant config changes](https://github.com/ericboehs/dotfiles/commit/b47547f757fc31ed5f4241874982541ba7d6cf0a) to my dotfiles. Essentially you just need to defer...
@alexcardell I'm not sure I'm understanding your problem but I'm guessing you're on the `master` branch instead of `dev`. This feature is exclusive to the dev branch for now.
Yeah, my solution is definitely a hack. I think the official solution should be a vimwiki_list config var.
Any update on this? It's been a todo for a year and a half. I'm still seeing this logged in our production exception logger. I'd ignore it in my exception...
I'm getting stuck at Step 3, `au FocusGained * echo 'foo'`. It doesn't output anything. `` is set and `tmux show -s` shows `focus-events on`. I'm on Sierra with Terminal...
Okay so this is weird. If I: 1. Open `vim` 2. Run `:au FocusGained * echo 'foo'` 3. Switch to a different tmux pane and then back again There's no...
Figured it out! I started commenting out everything in my vimrc and it started working. Turns out I was calling `silent !stty -ixon > /dev/null 2>/dev/null` and for some reason...
Yes. It looks like vim-tmux-focus-events [sets bindings for F24/F25](https://github.com/tmux-plugins/vim-tmux-focus-events/blob/master/plugin/tmux_focus_events.vim#L43-L61). I don't know how to help you specifically but I can point you to [my dotfiles](https://github.com/ericboehs/dotfiles) which work out of the...
You're right, `block.arity ==0` should never happen, but it is because whatever is calling your Redis connection is passing a block without an arg. The issue isn't with this gem...
Taking a quick look, we'd need to: - [ ] Add `SQL[:delete_jobs]` and `SQL[:reschedule_jobs]` in [lib/que/web/sql.rb](https://github.com/statianzo/que-web/blob/109df4763719995dfcd9269bd825f83994cfddfc/lib/que/web/sql.rb). I'd assume these would take an array of ids. - [ ] Implement `delete`...