R. David Dunphy

Results 13 comments of R. David Dunphy

The difference with an overlay div is that if the hint has a transparent background, you can still see the original background behind it. E.g. with this value: ```css --tridactyl-hint-bg:...

For anyone else looking for a solution, one alternative is to override `` to call a custom function like this: ```vim function! OpenLastUsedBuffer(count) abort let blist = map(sort(getbufinfo({'buflisted': 1}), {b1,...

You can do this using autocommands: ```vim augroup dateformats autocmd! autocmd VimEnter * silent execute 'SpeedDatingFormat %d/%m/%y' augroup END ```